[PHP-DEV] CVS update: php3 From: thies (php-dev <email protected>)
Date: 10/22/98

Date: Thursday October 22, 1998 @ 13:11
Author: thies

Update of /repository/php3
In directory asf:/u2/tmp/cvs-serv1087

Modified Files:
        token_cache.c
Log Message:
placed #if DEBUG around debug message in tcm_new (introduced on 17 Oct)

Index: php3/token_cache.c
diff -c php3/token_cache.c:1.90 php3/token_cache.c:1.91
*** php3/token_cache.c:1.90 Sat Oct 17 14:17:28 1998
--- php3/token_cache.c Thu Oct 22 13:11:59 1998
***************
*** 29,35 ****
   */
  
  
! /* $Id: token_cache.c,v 1.90 1998/10/17 18:17:28 zeev Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
--- 29,35 ----
   */
  
  
! /* $Id: token_cache.c,v 1.91 1998/10/22 17:11:59 thies Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
***************
*** 91,97 ****
--- 91,99 ----
                  return FAILURE;
          }
          tcm->initialized++;
+ #if DEBUG
          fprintf(stderr,"%d\n", tcm->initialized);
+ #endif
          if (tcm->initialized >= tcm->max) {
                  tcm->token_caches = (TokenCache *) erealloc(tcm->token_caches, (tcm->max + TOKEN_CACHES_BLOCK_SIZE) * sizeof(TokenCache));
                  if (!tcm->token_caches) {

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>