Hi,

On Wed, 2009-04-08 at 00:14 +0000, Felipe Pena wrote:
> felipe                Wed Apr  8 00:14:37 2009 UTC
> 
>   Modified files:              
>     /php-src/sapi/cli php_cli.c 
>   Log:
>   - Fix ZTS build
>   
> http://cvs.php.net/viewvc.cgi/php-src/sapi/cli/php_cli.c?r1=1.207&r2=1.208&diff_format=u
> Index: php-src/sapi/cli/php_cli.c
> diff -u php-src/sapi/cli/php_cli.c:1.207 php-src/sapi/cli/php_cli.c:1.208
> --- php-src/sapi/cli/php_cli.c:1.207  Tue Apr  7 16:10:35 2009
> +++ php-src/sapi/cli/php_cli.c        Wed Apr  8 00:14:37 2009
> @@ -20,7 +20,7 @@
>     +----------------------------------------------------------------------+
>  */
>  
> -/* $Id: php_cli.c,v 1.207 2009/04/07 16:10:35 lbarnaud Exp $ */
> +/* $Id: php_cli.c,v 1.208 2009/04/08 00:14:37 felipe Exp $ */
>  
>  #include "php.h"
>  #include "php_globals.h"
> @@ -234,7 +234,7 @@
>  #define STDOUT_FILENO 1
>  #endif
>  
> -static inline int sapi_cli_select(int fd)
> +static inline int sapi_cli_select(int fd TSRMLS_DC)
>  {
>       fd_set wfd, dfd;
>       struct timeval tv;
> @@ -253,14 +253,14 @@
>       return ret != -1;
>  }
>  
> -static inline size_t sapi_cli_single_write(const char *str, uint str_length) 
> /* {{{ */
> +static inline size_t sapi_cli_single_write(const char *str, uint str_length 
> TSRMLS_DC) /* {{{ */
>  {
>  #ifdef PHP_WRITE_STDOUT
>       long ret;
>  
>       do {
>               ret = write(STDOUT_FILENO, str, str_length);
> -     } while (ret <= 0 && errno == EAGAIN && sapi_cli_select(STDOUT_FILENO));
> +     } while (ret <= 0 && errno == EAGAIN && sapi_cli_select(STDOUT_FILENO 
> TSRMLS_CC));
>  
>       if (ret <= 0) {
>               return 0;
> @@ -291,7 +291,7 @@
>  
>       while (remaining > 0)
>       {
> -             ret = sapi_cli_single_write(ptr, remaining);
> +             ret = sapi_cli_single_write(ptr, remaining TSRMLS_CC);
>               if (!ret) {
>  #ifndef PHP_CLI_WIN32_NO_CONSOLE
>                       php_handle_aborted_connection();
> @@ -1173,7 +1173,7 @@
>                                       pos = 0;
>                                       
>                                       if (php_last_char != '\0' && 
> php_last_char != '\n') {
> -                                             sapi_cli_single_write("\n", 1);
> +                                             sapi_cli_single_write("\n", 1 
> TSRMLS_CC);
>                                       }
>  
>                                       if (EG(exception)) {
> 
> 
> 

Thanks :)

Regards,

Arnaud



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to