2000-02-26 05:27:03 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2014-09-20 00:33:14 +08:00
|
|
|
| PHP Version 7 |
|
2000-02-26 05:27:03 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2015-01-15 23:27:30 +08:00
|
|
|
| Copyright (c) 1997-2015 The PHP Group |
|
2000-02-26 05:27:03 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2000-02-26 05:27:03 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2000-02-26 05:27:03 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2003-03-18 20:06:09 +08:00
|
|
|
| Author: Stig Bakken <ssb@php.net> |
|
2000-02-26 05:27:03 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 13:41:02 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
2000-02-26 05:27:03 +08:00
|
|
|
|
2000-07-03 07:46:51 +08:00
|
|
|
#ifndef PHP_TICKS_H
|
|
|
|
#define PHP_TICKS_H
|
2000-02-26 05:27:03 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
int php_startup_ticks(void);
|
|
|
|
void php_deactivate_ticks(void);
|
|
|
|
void php_shutdown_ticks(void);
|
|
|
|
void php_run_ticks(int count);
|
2004-02-20 16:04:30 +08:00
|
|
|
|
|
|
|
BEGIN_EXTERN_C()
|
2014-12-14 06:06:14 +08:00
|
|
|
PHPAPI void php_add_tick_function(void (*func)(int));
|
|
|
|
PHPAPI void php_remove_tick_function(void (*func)(int));
|
2004-02-20 16:04:30 +08:00
|
|
|
END_EXTERN_C()
|
2000-02-26 05:27:03 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|