Changeset 131
- Timestamp:
- 11/15/05 13:30:25 (3 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/README (modified) (2 diffs)
- eaccelerator/trunk/mm.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r130 r131 1 2005-11-15 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 * Spinlock test now tests for i386 and x86_64. Because spinlocks where 3 never used on 64-bit and sysv ipc locking didn't work, there were a 4 lot of problems. 5 1 6 2005-10-20 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 7 eaccelerator/trunk/README
r88 r131 95 95 ------------- 96 96 This version of the eAccelerator has been successfully tested on PHP 97 4.1.0-4.3.3 under RedHat Linux 7.0, 7.3, 8.0and Windows with Apache 1.397 4.1.0-4.3.3 under Fedora 1, 2, 3, 4 and Debian 3.1 and Windows with Apache 1.3 98 98 and Apache 2.0. 99 99 … … 350 350 Contact us 351 351 ---------- 352 To contact us with questions, patches or bugs, please send e-mail to353 Frank Alcantara <frankalcantaraat users.sourceforge.net>352 You can contact us with questions, patches or bugs, by sending an email to 353 Bart Vanbrabant <zoeloelip at users.sourceforge.net> eaccelerator/trunk/mm.c
r130 r131 171 171 #if defined(MM_SEM_SPINLOCK) 172 172 173 #if defined(__GNUC__) && defined(i386)173 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) 174 174 # include "x86_spinlocks.h" 175 175 #else