Changeset 176

Show
Ignore:
Timestamp:
03/05/06 13:18:54 (3 years ago)
Author:
bart
Message:

The nigthly cvs tarballs of sf aren't that nigthly at all. The commits from
march weren't included.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/ChangeLog

    r175 r176  
     12006-03-02  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
     2 
     3        * Changed copyright dates to 2006 
     4        * Updated the eaccelerator url in some last files 
     5        * I removed all authors from specific files. Authors can be traced  
     6          through mmcache and eaccelerator cvs. I did this because some  
     7          names should be added to quite some source files while others have 
     8          added their own while contributing less then the once not mentoined. 
     9          All contributors are credited in the AUTHORS file and specific  
     10          information can be found in the Changelog and cvs. 
     11 
     122006-03-01  Hans Rakers <hans at parse dot nl> 
     13 
     14        * Bunch of Win32 fixes. It compiles cleanly now (tested with VC++ 6.0) 
     15        * Fix to the optimizer for bug #1439344 
     16        * Fix to ea_store.c for a build problem on RHEL3 reported on the forums at  
     17          https://sourceforge.net/forum/message.php?msg_id=3596327 
     18 
    1192006-02-28  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
    220 
  • eaccelerator/trunk/cache.c

    r169 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/cache.h

    r64 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/content.c

    r162 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/content.h

    r64 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>                     | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/debug.c

    r173 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    2424   +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    |            Bart Vanbrabant <zoeloelip@users.sourceforge.net>         | 
    27    +----------------------------------------------------------------------+ 
    2825   $Id$ 
    2926*/ 
     
    3633#include <ctype.h> 
    3734#include <stdio.h> 
    38 #include <unistd.h> 
    39 #include <fcntl.h> 
    4035 
    4136static FILE *F_fp = NULL; 
     
    7368} 
    7469 
    75 /* lock the log file, don't lock stderr */ 
    76 static void ea_debug_lock() { 
    77     int rc; 
    78     struct flock l; 
    79     if (F_fp != stderr) { 
    80         l.l_whence   = SEEK_SET; 
    81         l.l_start    = 0; 
    82         l.l_len      = 0; 
    83         l.l_pid      = 0; 
    84         l.l_type     = F_WRLCK; 
    85         do { 
    86             rc = fcntl(file_no, F_SETLKW, &l); 
    87         } while (rc < 0 && errno == EINTR); 
    88     } 
    89 } 
    90  
    91 static void ea_debug_unlock() { 
    92     int rc; 
    93     struct flock l; 
    94     if (F_fp != stderr) { 
    95         l.l_whence   = SEEK_SET; 
    96         l.l_start    = 0; 
    97         l.l_len      = 0; 
    98         l.l_pid      = 0; 
    99         l.l_type     = F_UNLCK; 
    100         do { 
    101             rc = fcntl(file_no, F_SETLKW, &l); 
    102         } while (rc < 0 && errno == EINTR); 
    103     } 
    104 } 
    105  
    10670/** 
    10771 * Print a log message that will be print when the debug level is 
     
    11983        va_end (args); 
    12084 
    121         ea_debug_lock(); 
    122 #ifdef ZEND_WIN32 
    123         OutputDebugString (output_buf); 
    124 #else 
     85        if (F_fp != stderr) { 
     86                EACCELERATOR_FLOCK(file_no, LOCK_EX); 
     87        } 
    12588        fputs (output_buf, F_fp); 
    12689        fflush (F_fp); 
    127 #endif 
    128         ea_debug_unlock(); 
     90        if (F_fp != stderr) { 
     91                EACCELERATOR_FLOCK(file_no, LOCK_UN); 
     92        } 
    12993    } 
    13094} 
     
    143107    va_end (args); 
    144108 
    145 #ifdef ZEND_WIN32 
    146     OutputDebugString (output_buf); 
    147 #else 
    148109    fputs (output_buf, stderr); 
    149110    fflush (stderr); 
    150 #endif 
    151111} 
    152112 
     
    170130        va_end (args); 
    171131         
    172         ea_debug_lock(); 
     132        if (F_fp != stderr) { 
     133                EACCELERATOR_FLOCK(file_no, LOCK_EX); 
     134        } 
    173135        fputs (output_buf, F_fp); 
    174136        fflush (F_fp); 
    175         ea_debug_unlock(); 
     137        if (F_fp != stderr) { 
     138                EACCELERATOR_FLOCK(file_no, LOCK_UN); 
     139        } 
    176140    } 
    177141} 
     
    183147{ 
    184148    if (debug_level & eaccelerator_debug) { 
    185         ea_debug_lock(); 
     149        if (F_fp != stderr) { 
     150                EACCELERATOR_FLOCK(file_no, LOCK_EX); 
     151        } 
    186152        fputs (message, F_fp); 
    187153        fflush (F_fp); 
    188         ea_debug_unlock(); 
     154        if (F_fp != stderr) { 
     155                EACCELERATOR_FLOCK(file_no, LOCK_UN); 
     156        } 
    189157    } 
    190158} 
     
    196164{ 
    197165    if (eaccelerator_debug & debug_level) { 
    198         ea_debug_lock(); 
     166        if (F_fp != stderr) { 
     167                EACCELERATOR_FLOCK(file_no, LOCK_EX); 
     168        } 
    199169        while (len--) { 
    200170            fputc (*p++, F_fp); 
     
    202172        fputc ('\n', F_fp); 
    203173        fflush (F_fp); 
    204         ea_debug_unlock(); 
     174        if (F_fp != stderr) { 
     175                EACCELERATOR_FLOCK(file_no, LOCK_UN); 
     176        } 
    205177    } 
    206178} 
     
    217189        b = ht->pListHead; 
    218190 
    219         ea_debug_lock(); 
     191        if (F_fp != stderr) { 
     192                EACCELERATOR_FLOCK(file_no, LOCK_EX); 
     193        } 
    220194        fputs(p, F_fp); 
    221195        fflush(F_fp); 
    222         ea_debug_unlock(); 
    223196        while (b) { 
    224197            fprintf (F_fp, "[%d] ", i); 
     
    228201            i++; 
    229202        } 
     203        if (F_fp != stderr) { 
     204                EACCELERATOR_FLOCK(file_no, LOCK_UN); 
     205        } 
    230206    } 
    231207} 
     
    238214#ifdef DEBUG /* This ifdef is still req'd because xpad is N/A in a non-debug compile */ 
    239215    if (eaccelerator_debug & debug_level) { 
    240         ea_debug_lock(); 
     216        if (F_fp != stderr) { 
     217                EACCELERATOR_FLOCK(file_no, LOCK_EX); 
     218        } 
    241219        int i = EAG (xpad); 
    242220        while (i-- > 0) { 
    243221            fputc ('\t', F_fp); 
    244222        } 
    245         ea_debug_unlock(); 
     223        if (F_fp != stderr) { 
     224                EACCELERATOR_FLOCK(file_no, LOCK_UN); 
     225        } 
    246226    } 
    247227#endif 
  • eaccelerator/trunk/debug.h

    r173 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>                 | 
    26    |            Bart Vanbrabant <zoeloelip@users.sourceforge.net>                 | 
    2724   +----------------------------------------------------------------------+ 
    2825   $Id$ 
  • eaccelerator/trunk/ea_restore.c

    r173 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    2424   +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    |            Seung Woo <segv@sayclub.com>                              | 
    27    |            Everaldo Canuto <everaldo_canuto@yahoo.com.br>            | 
    28    +----------------------------------------------------------------------+ 
    2925   $Id$ 
    3026*/ 
     
    252248#ifdef ZEND_ENGINE_2_1 
    253249        if (from->vars != NULL) { 
    254                 zend_uint i; 
     250                int i; 
    255251                FIXUP(from->vars); 
    256252                for (i = 0; i < from->last_var; i++) { 
     
    719715                                                  zend_class_entry * to TSRMLS_DC) 
    720716{ 
    721         DBG(ea_debug_printf, (EA_DEBUG, "restore_class_parent: restoring parent class %s of class %s\n", (char *) parent, to->name)); 
    722717#ifdef ZEND_ENGINE_2 
    723718        zend_class_entry** parent_ptr = NULL; 
     
    813808        zend_class_entry *old; 
    814809        zend_function *f = NULL; 
    815 /*      int fname_len = 0;              hrak: seems rather unused 
    816         char *fname_lc = NULL; */ 
    817 #ifdef ZEND_ENGINE_2 
    818 /*      int cname_len;                  hrak: same here 
    819         char *cname_lc; */ 
    820         Bucket *p; 
    821         union _zend_function *old_ctor; 
    822 #endif 
    823810 
    824811        DBG(ea_debug_pad, (EA_DEBUG TSRMLS_CC)); 
  • eaccelerator/trunk/ea_restore.h

    r162 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/ea_store.c

    r173 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    2424   +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    |            Seung Woo <segv@sayclub.com>                              | 
    27    |            Everaldo Canuto <everaldo_canuto@yahoo.com.br>            | 
    28    +----------------------------------------------------------------------+ 
    2925   $Id$ 
    3026*/ 
     
    254250#ifdef ZEND_ENGINE_2_1 
    255251        if (from->vars != NULL) { 
    256                 zend_uint i; 
     252                int i; 
    257253                EACCELERATOR_ALIGN(EAG(mem)); 
    258254                EAG(mem) += sizeof(zend_compiled_variable) * from->last_var; 
     
    538534 
    539535        DBG(ea_debug_pad, (EA_DEBUG TSRMLS_CC)); 
     536#ifdef ZEND_ENGINE_2 
    540537        DBG(ea_debug_printf, (EA_DEBUG, "[%d] store_op_array: %s [scope=%s type=%x]\n",  
    541538            getpid(), from->function_name ? from->function_name : "(top)", 
    542 #ifdef ZEND_ENGINE_2 
    543539                        from->scope ? from->scope->name : "NULL" 
    544 #else 
    545                         "NULL" 
    546 #endif 
    547540                        , from->type 
    548541                )); 
     542#else 
     543        DBG(ea_debug_printf, (EA_DEBUG, "[%d] store_op_array: %s [scope=%s type=%x]\n",  
     544            getpid(), from->function_name ? from->function_name : "(top)", 
     545                        "NULL" 
     546                        , from->type 
     547                )); 
     548#endif 
    549549 
    550550        if (from->type == ZEND_INTERNAL_FUNCTION) { 
     
    706706#ifdef ZEND_ENGINE_2_1 
    707707        if (from->vars != NULL) { 
    708                 zend_uint i; 
     708                int i; 
    709709                EACCELERATOR_ALIGN(EAG(mem)); 
    710710                to->last_var = from->last_var; 
  • eaccelerator/trunk/ea_store.h

    r116 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    2424   +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    +----------------------------------------------------------------------+ 
    2725   $Id$ 
    2826*/ 
  • eaccelerator/trunk/eaccelerator.c

    r175 r176  
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    |            Seung Woo <segv@sayclub.com>                              | 
    27    |            Everaldo Canuto <everaldo_canuto@yahoo.com.br>            | 
    2824   +----------------------------------------------------------------------+ 
    2925   $Id$ 
  • eaccelerator/trunk/eaccelerator.h

    r171 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                  | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    |            Everaldo Canuto <everaldo_canuto@yahoo.com.br>            | 
    2724   +----------------------------------------------------------------------+ 
    2825   $Id$ 
  • eaccelerator/trunk/encoder.c

    r124 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 eAccelerator                                      | 
    6    | http://eaccelerator.sourceforge.net                                  | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
     6   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
    88   | This program is free software; you can redistribute it and/or        | 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/loader.c

    r162 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/mm.c

    r150 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/mm.h

    r123 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/opcodes.c

    r162 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 eAccelerator                                      | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.sourceforge.net                                  | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/opcodes.h

    r44 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 eAccelerator                                      | 
    6    | http://eaccelerator.sourceforge.net                                  | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
     6   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
    88   | This program is free software; you can redistribute it and/or        | 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/optimize.c

    r162 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 eAccelerator                                      | 
    6    | http://eaccelerator.sourceforge.net                                  | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
     6   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
    88   | This program is free software; you can redistribute it and/or        | 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
     
    310308#endif 
    311309             case ZEND_FE_FETCH: 
     310             case ZEND_PRINT: 
    312311#ifdef ZEND_ENGINE_2 
    313312             case ZEND_INIT_METHOD_CALL: 
  • eaccelerator/trunk/session.c

    r123 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
    6    | http://eaccelerator.net                                                    | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
     6   | http://eaccelerator.net                                                    | 
    77   +----------------------------------------------------------------------+ 
    88   | This program is free software; you can redistribute it and/or        | 
     
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    2424   +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    +----------------------------------------------------------------------+ 
    2725   $Id$ 
    2826*/ 
  • eaccelerator/trunk/session.h

    r72 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/shm.c

    r113 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                              | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/shm.h

    r64 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/webui.c

    r162 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2222   |                                                                      | 
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    24    +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    2624   +----------------------------------------------------------------------+ 
    2725   $Id$ 
  • eaccelerator/trunk/webui.h

    r64 r176  
    33   | eAccelerator project                                                 | 
    44   +----------------------------------------------------------------------+ 
    5    | Copyright (c) 2004 - 2005 eAccelerator                               | 
     5   | Copyright (c) 2004 - 2006 eAccelerator                               | 
    66   | http://eaccelerator.net                                                      | 
    77   +----------------------------------------------------------------------+ 
     
    2323   | A copy is availble at http://www.gnu.org/copyleft/gpl.txt            | 
    2424   +----------------------------------------------------------------------+ 
    25    | Author(s): Dmitry Stogov <dstogov@users.sourceforge.net>             | 
    26    +----------------------------------------------------------------------+ 
    2725   $Id$ 
    2826*/ 
  • eaccelerator/trunk/x86_spinlocks.h