]> granicus.if.org Git - php/commitdiff
- Move to new Zend macros
authorAndi Gutmans <andi@php.net>
Sat, 1 Apr 2000 20:11:01 +0000 (20:11 +0000)
committerAndi Gutmans <andi@php.net>
Sat, 1 Apr 2000 20:11:01 +0000 (20:11 +0000)
main/php_virtual_cwd.c
main/php_virtual_cwd.h

index 4bddd400fab95467e5c2de6cc5c610ab8cad19cd..efb0ac8cf80d28b3550d7a2e2d8af2889b737c51 100644 (file)
 
 #ifdef ZTS
 #include "TSRM.h"
-CWD_API int cwd_globals_id;
-#else
-cwd_globals_struct cwd_globals;
 #endif
 
+ZEND_DECLARE_MODULE_GLOBALS(cwd);
+
 cwd_state true_global_cwd_state;
 
 #ifndef ZEND_WIN32
@@ -110,7 +109,7 @@ static int php_is_file_ok(const cwd_state *state)
        return (1);
 }
 
-static void cwd_globals_ctor(cwd_globals_struct *cwd_globals)
+static void cwd_globals_ctor(zend_cwd_globals *cwd_globals)
 {
        cwd_globals->cwd.cwd = (char *) malloc(true_global_cwd_state.cwd_length+1);
        memcpy(cwd_globals->cwd.cwd, true_global_cwd_state.cwd, true_global_cwd_state.cwd_length+1);
@@ -128,11 +127,8 @@ void virtual_cwd_startup()
        }
        true_global_cwd_state.cwd = strdup(cwd);
        true_global_cwd_state.cwd_length = strlen(cwd);
-#ifdef ZTS
-        cwd_globals_id = ts_allocate_id(sizeof(cwd_globals_struct), (ts_allocate_ctor) cwd_globals_ctor, NULL);
-#else   
-        cwd_globals_ctor(&cwd_globals);
-#endif  
+
+       ZEND_INIT_MODULE_GLOBALS(cwd, cwd_globals_ctor, NULL);
 }
 
 char *virtual_getcwd_ex(int *length)
index 035314c8812f0f0452fad9e135dc2891915f662e..8b4f40a9dc5caa9baa866421d7ef0d34b147e02b 100644 (file)
@@ -2,6 +2,7 @@
 #define VIRTUAL_CWD_H
 
 #include "zend.h"
+#include "zend_API.h"
 
 #ifdef ZEND_WIN32
 #       ifdef CWD_EXPORTS
@@ -27,17 +28,17 @@ int virtual_chdir(char *path);
 int virtual_filepath(char *path, char **filepath);
 FILE *virtual_fopen(char *path, const char *mode);
 
-typedef struct _cwd_globals_struct {
+ZEND_BEGIN_MODULE_GLOBALS(cwd)
        cwd_state cwd;
-} cwd_globals_struct;
+ZEND_END_MODULE_GLOBALS(cwd)
 
 #ifdef ZTS
-# define CWDLS_D  cwd_globals_struct *cwd_globals
+# define CWDLS_D  zend_cwd_globals *cwd_globals
 # define CWDLS_DC , CWDLS_D
 # define CWDLS_C  cwd_globals
 # define CWDLS_CC , CWDLS_C
 # define CWDG(v) (cwd_globals->v)
-# define CWDLS_FETCH()    cwd_globals_struct *cwd_globals = ts_resource(cwd_globals_id)
+# define CWDLS_FETCH()    zend_cwd_globals *cwd_globals = ts_resource(cwd_globals_id)
 CWD_API extern int cwd_globals_id;
 #else
 # define CWDLS_D  void
@@ -46,7 +47,7 @@ CWD_API extern int cwd_globals_id;
 # define CWDLS_CC
 # define CWDG(v) (cwd_globals.v)
 # define CWDLS_FETCH()
-extern CWD_API cwd_globals_struct cwd_globals;
+extern CWD_API zend_cwd_globals cwd_globals;
 #endif
 
 #endif /* VIRTUAL_CWD_H */