]> granicus.if.org Git - php/commitdiff
Fix ZTS build
authorfoobar <sniper@php.net>
Fri, 12 Jul 2002 11:45:05 +0000 (11:45 +0000)
committerfoobar <sniper@php.net>
Fri, 12 Jul 2002 11:45:05 +0000 (11:45 +0000)
ext/yaz/php_yaz.c
ext/yaz/php_yaz.h

index 47b2d39ba007ba0d64d9cba1b9e235f579f8dd43..27d815e4e39bf474491f07db2fea7dfd5134f71d 100644 (file)
@@ -323,8 +323,7 @@ function_entry yaz_functions [] = {
        {NULL, NULL, NULL}
 };
 
-static void get_assoc (INTERNAL_FUNCTION_PARAMETERS, pval **id,
-                                          Yaz_Association *assocp)
+static void get_assoc (INTERNAL_FUNCTION_PARAMETERS, pval **id, Yaz_Association *assocp)
 {
        Yaz_Association *as = 0;
        
@@ -1094,7 +1093,7 @@ static void send_init(Yaz_Association t)
        send_APDU (t, apdu);
 }
 
-static int do_event (int *id, int timeout)
+static int do_event (int *id, int timeout TSRMLS_DC)
 {
        fd_set input, output;
        int i;
@@ -1587,7 +1586,7 @@ PHP_FUNCTION(yaz_wait)
                while (ZOOM_event (no, conn_ar))
                        ;
 #else
-       while (do_event(&id, timeout))
+       while (do_event(&id, timeout TSRMLS_CC))
                ;
 #endif
        RETURN_TRUE;
@@ -2973,7 +2972,7 @@ static void php_yaz_init_globals(zend_yaz_globals *yaz_globals)
 }
 /* }}} */
 
-void yaz_close_session(Yaz_Association *as)
+void yaz_close_session(Yaz_Association *as TSRMLS_DC)
 {
        if (*as && (*as)->order == YAZSG(assoc_seq))
        {
@@ -2987,14 +2986,10 @@ void yaz_close_session(Yaz_Association *as)
        }
 }
 
-static void yaz_close_link (zend_rsrc_list_entry *rsrc
-#ifdef TSRMLS_DC
-       TSRMLS_DC
-#endif
-)
+static void yaz_close_link (zend_rsrc_list_entry *rsrc TSRMLS_DC)
 {
        Yaz_Association *as = (Yaz_Association *) rsrc->ptr;
-       yaz_close_session (as);
+       yaz_close_session (as TSRMLS_CC);
 }
 
 /* {{{ PHP_INI_BEGIN
index 0a80be2f2be10806b8357801a4e8fa2a77070f3d..565edb0aa097ae1f940156c5d5eb9276e1afebe8 100644 (file)
@@ -60,7 +60,7 @@ ZEND_BEGIN_MODULE_GLOBALS(yaz)
 ZEND_END_MODULE_GLOBALS(yaz)
     
 #ifdef ZTS
-#define YAZSG(v) TSRMG(yaz_globals_id, zend_yaz_globals *. v)
+#define YAZSG(v) TSRMG(yaz_globals_id, zend_yaz_globals *, v)
 #else
 #define YAZSG(v) (yaz_globals.v)
 #endif