Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Zend Signal Handling (see RFC: https://wiki.php.net/rfc/zendsignals) | Ilia Alshanetsky | 2011-06-02 | 1 | -0/+7 |
| | | | | | | | | This needs to go into 5.4 as well, but will wait for Pierre to review win32 situation # Patch by Lucas Nealan, Arnaud Le Blanc, Brian Shire & Ilia Alshanetsky | ||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | update copyright | Ilia Alshanetsky | 2010-02-16 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | Improved PHP binary size and startup speed with GCC4 visibility control (Nuno) | Dmitry Stogov | 2008-01-30 | 1 | -2/+4 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | typo | Dmitry Stogov | 2007-04-17 | 1 | -2/+2 |
| | |||||
* | WIN64 support | Dmitry Stogov | 2007-04-16 | 1 | -0/+8 |
| | |||||
* | MFH | Antony Dovgal | 2007-02-15 | 1 | -6/+3 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | Fixed bug #35988 (Unknown persistent list entry type in module shutdown) | Dmitry Stogov | 2006-03-14 | 1 | -0/+3 |
| | |||||
* | - Update to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | Fix compile failure with GCC 4.0.x | foobar | 2005-08-05 | 1 | -1/+1 |
| | |||||
* | Add three new TSRM api functions: | Wez Furlong | 2005-04-27 | 1 | -0/+6 |
| | | | | | | | | | | TSRM_API void *tsrm_new_interpreter_context(void); TSRM_API void *tsrm_set_interpreter_context(void *new_ctx); TSRM_API void tsrm_free_interpreter_context(void *context); These can be used, with a suitable SAPI, to host multiple interpreters on the same thread. | ||||
* | Revert bad fix | foobar | 2005-03-17 | 1 | -1/+1 |
| | |||||
* | Fix Jani breakage | Rasmus Lerdorf | 2005-03-16 | 1 | -1/+1 |
| | |||||
* | NetWare can use the tsrm_config.h | Anantha Kesari H Y | 2005-02-21 | 1 | -1/+1 |
| | |||||
* | NetWare has a compliant pthread implementation | Anantha Kesari H Y | 2005-02-01 | 1 | -14/+0 |
| | |||||
* | - Fix outside-source-tree builds. Always include generated header files | foobar | 2005-01-09 | 1 | -1/+1 |
| | | | | | with #include <some_header.h> to make sure the correct file is used. | ||||
* | Explicitly include this header for SHFILEINFO. | Wez Furlong | 2003-12-03 | 1 | -0/+1 |
| | | | | | # no need to MFH | ||||
* | Restore HEAD of TSRM to what it was two days ago. | Sebastian Bergmann | 2003-06-25 | 1 | -0/+15 |
| | |||||
* | bring head into sync with the php4 branch | James Cox | 2003-06-23 | 1 | -15/+0 |
| | |||||
* | - Fix non-ZTS build after Sterling's changes to TSRM | Derick Rethans | 2003-04-28 | 1 | -1/+4 |
| | |||||
* | add TSRMLS_FETCH_CTX which allows you to map a variable to a ts context. | Sterling Hughes | 2003-04-27 | 1 | -0/+1 |
| | | | | | | | | | | This is useful when you are mapping callbacks, you can simply associate a struct member to a thread context: void mycallback(my_struct *user) { TSRMLS_FETCH_CTX(user->thread_ctx); } | ||||
* | More Win32 build improvements | Zeev Suraski | 2003-02-17 | 1 | -0/+3 |
| | |||||
* | NetWare related changes/modifications. | Anantha Kesari H Y | 2003-01-02 | 1 | -0/+8 |
| | |||||
* | Add BeOS thread support to TSRM. This should not impact on any other OS's | David Reid | 2002-10-05 | 1 | -0/+10 |
| | | | | | | | | but allows us to build PHP with threading support and therefore we can build as an Apache 2 module. The locking is currently done using benaphores but this may be reviewed. | ||||
* | make win32 debug output more verbose | Harald Radi | 2002-08-07 | 1 | -0/+1 |
| | |||||
* | Change to build on NetWare: TSRM_CONFIG.H not required | Venkat Raghavan S | 2002-05-29 | 1 | -1/+2 |
| | |||||
* | Basic NetWare changes | Venkat Raghavan S | 2002-05-28 | 1 | -0/+6 |
| | |||||
* | Fix check.. tsrm_config.h exists on all platforms but Win32. | Sascha Schumann | 2002-03-07 | 1 | -1/+1 |
| | |||||
* | this kills 90% of the warings in maintainer-mode | Thies C. Arntzen | 2001-08-02 | 1 | -1/+1 |
| | |||||
* | Save TSRMLS_FETCH()'s | Zeev Suraski | 2001-07-30 | 1 | -2/+7 |
| | |||||
* | Make Sebastian happy... | Zeev Suraski | 2001-07-28 | 1 | -4/+3 |
| | |||||
* | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -15/+15 |
| | |||||
* | Fix build | Sascha Schumann | 2001-07-28 | 1 | -0/+8 |
| | |||||
* | - Prepare for optimization - use a single fetch for multiple resources | Zeev Suraski | 2001-07-27 | 1 | -3/+13 |
| | | | | | - Clean a bit | ||||
* | Support for SGI's State Threads. Will be used by PHP's thttpd SAPI | Sascha Schumann | 2001-06-21 | 1 | -0/+5 |
| | | | | | initially. | ||||
* | Use the hardly-documented third parameter of AM_INIT_AUTOMAKE to suppress | Sascha Schumann | 2000-12-02 | 1 | -4/+0 |
| | | | | | defining PACKAGE/VERSION. | ||||
* | Beef up debugging support | Zeev Suraski | 2000-11-18 | 1 | -3/+5 |
| | |||||
* | Import debug-level improvements to TSRM, by Dmitri Dmitrienko | Zeev Suraski | 2000-11-17 | 1 | -2/+4 |
| | |||||
* | - Revert change of defining TSRM_WIN32 in dsp | Andi Gutmans | 2000-09-02 | 1 | -0/+4 |
| | |||||
* | - Use TSRM_WIN32 | Andi Gutmans | 2000-09-02 | 1 | -3/+3 |
| | |||||
* | - Support for always building TSRM into PHP | Andi Gutmans | 2000-08-31 | 1 | -0/+5 |
| | |||||
* | - Change license of .c and .h files of TSRM. It's still not the complete | Andi Gutmans | 2000-08-31 | 1 | -8/+4 |
| | | | | | | - text like in the PHP headers because we don't have it on the web yet but - it should be enough to allow Sascha to touch TSRM :) | ||||
* | Identifiers that begin with underscore are reserved for the implementation. | Sascha Schumann | 2000-07-02 | 1 | -3/+3 |
| | |||||
* | Make it possible to access other threads' local storage. Only use it if you ↵ | Zeev Suraski | 2000-06-16 | 1 | -1/+2 |
| | | | | | | | have a clear knowledge of what you're doing! | ||||
* | THREAD_T refers to thread ids, not attributes | Sascha Schumann | 1999-12-30 | 1 | -1/+1 |
| | |||||
* | Use Critical Sections under Win32 - shows roughly 40% performance increase under | Zeev Suraski | 1999-12-20 | 1 | -1/+1 |
| | | | | | multithreaded Win32! | ||||
* | Fix leak in pthreads, and add initial support for GNU Pth | Sascha Schumann | 1999-12-05 | 1 | -0/+5 |
| |