summaryrefslogtreecommitdiff
path: root/main/php_ticks.c
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed bug #45352 (Segmentation fault because of tick function on second request)Dmitry Stogov2008-06-251-0/+5
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* * email address changeStig Bakken2003-03-181-1/+1
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Silence a warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).Jon Parise2002-03-041-1/+1
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-1/+1
| | | | | - whitespace fixes
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-1/+0
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-2/+3
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-5/+5
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-1/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* @Added PHP API for Zend's ticksStig Bakken2000-08-291-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | Added PHP API for registering tick functions. Ticks is a per-instruction callback in Zend that allows us to implement cooperative multitasking within PHP. Example: In extension code: php_add_tick_function(my_tick_func); void my_tick_func(int count) { php_printf("[tick %d]", count); } In PHP code: <?php declare(ticks = 1) { print "there should be two ticks here.\n"; } ?>
* Cleaning up some messSascha Schumann2000-08-211-1/+1
|
* various version 2.0 and 2.01 licenses -> 2.02David Croft2000-07-241-4/+5
|
* @- Implemented default_charset and default_mimetype config directives (Stig)Stig Bakken2000-02-251-0/+77
Implemented default_charset and default_mimetype configuration directives. Started implementing ticks in PHP.