2000-02-26 05:27:03 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
| PHP Version 5 |
|
2000-02-26 05:27:03 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2014-01-03 11:04:26 +08:00
|
|
|
| Copyright (c) 1997-2014 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
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
#include "php_ticks.h"
|
|
|
|
|
2001-07-28 19:36:37 +08:00
|
|
|
int php_startup_ticks(TSRMLS_D)
|
2000-02-26 05:27:03 +08:00
|
|
|
{
|
2000-08-29 17:18:48 +08:00
|
|
|
zend_llist_init(&PG(tick_functions), sizeof(void(*)(int)), NULL, 1);
|
2000-02-26 05:27:03 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-06-25 20:18:36 +08:00
|
|
|
void php_deactivate_ticks(TSRMLS_D)
|
|
|
|
{
|
|
|
|
zend_llist_clean(&PG(tick_functions));
|
|
|
|
}
|
|
|
|
|
2001-07-28 19:36:37 +08:00
|
|
|
void php_shutdown_ticks(TSRMLS_D)
|
2000-02-26 05:27:03 +08:00
|
|
|
{
|
|
|
|
zend_llist_destroy(&PG(tick_functions));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int php_compare_tick_functions(void *elem1, void *elem2)
|
|
|
|
{
|
2000-08-29 17:18:48 +08:00
|
|
|
void(*func1)(int);
|
|
|
|
void(*func2)(int);
|
|
|
|
memcpy(&func1, elem1, sizeof(void(*)(int)));
|
|
|
|
memcpy(&func2, elem2, sizeof(void(*)(int)));
|
|
|
|
return (func1 == func2);
|
2000-02-26 05:27:03 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 17:18:48 +08:00
|
|
|
PHPAPI void php_add_tick_function(void (*func)(int))
|
2000-02-26 05:27:03 +08:00
|
|
|
{
|
2001-07-28 19:36:37 +08:00
|
|
|
TSRMLS_FETCH();
|
2000-02-26 05:27:03 +08:00
|
|
|
|
2000-08-29 17:18:48 +08:00
|
|
|
zend_llist_add_element(&PG(tick_functions), (void *)&func);
|
2000-02-26 05:27:03 +08:00
|
|
|
}
|
|
|
|
|
2000-08-29 17:18:48 +08:00
|
|
|
PHPAPI void php_remove_tick_function(void (*func)(int))
|
2000-02-26 05:27:03 +08:00
|
|
|
{
|
2001-07-28 19:36:37 +08:00
|
|
|
TSRMLS_FETCH();
|
2000-02-26 05:27:03 +08:00
|
|
|
|
2002-03-05 04:57:36 +08:00
|
|
|
zend_llist_del_element(&PG(tick_functions), (void *)func,
|
2001-08-05 09:43:02 +08:00
|
|
|
(int(*)(void*, void*))php_compare_tick_functions);
|
2000-02-26 05:27:03 +08:00
|
|
|
}
|
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
static void php_tick_iterator(void *data, void *arg TSRMLS_DC)
|
2000-02-26 05:27:03 +08:00
|
|
|
{
|
|
|
|
void (*func)(int);
|
2000-08-29 17:18:48 +08:00
|
|
|
|
|
|
|
memcpy(&func, data, sizeof(void(*)(int)));
|
2000-02-26 05:27:03 +08:00
|
|
|
func(*((int *)arg));
|
|
|
|
}
|
|
|
|
|
|
|
|
void php_run_ticks(int count)
|
|
|
|
{
|
2001-07-28 19:36:37 +08:00
|
|
|
TSRMLS_FETCH();
|
2000-02-26 05:27:03 +08:00
|
|
|
|
2001-07-31 12:53:54 +08:00
|
|
|
zend_llist_apply_with_argument(&PG(tick_functions), (llist_apply_with_arg_func_t) php_tick_iterator, &count TSRMLS_CC);
|
2000-02-26 05:27:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
2001-09-09 21:29:31 +08:00
|
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: sw=4 ts=4
|
2000-02-26 05:27:03 +08:00
|
|
|
*/
|