summaryrefslogtreecommitdiff
path: root/main/php_ticks.h
Commit message (Collapse)AuthorAgeFilesLines
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* @Added PHP API for Zend's ticksStig Bakken2000-08-291-7/+2
| | | | | | | | | | | | | | | | | | | | | | | | 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"; } ?>
* various version 2.0 and 2.01 licenses -> 2.02David Croft2000-07-241-4/+5
|
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-2/+2
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* @- Implemented default_charset and default_mimetype config directives (Stig)Stig Bakken2000-02-251-0/+41
Implemented default_charset and default_mimetype configuration directives. Started implementing ticks in PHP.