mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 14:48:40 +00:00
30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
|
/*
|
||
|
+----------------------------------------------------------------------+
|
||
|
| PHP Version 5 |
|
||
|
+----------------------------------------------------------------------+
|
||
|
| Copyright (c) 1997-2013 The PHP Group |
|
||
|
+----------------------------------------------------------------------+
|
||
|
| http://www.opensource.org/licenses/mit-license.php MIT License |
|
||
|
+----------------------------------------------------------------------+
|
||
|
| Author: Jani Taskinen <jani.taskinen@iki.fi> |
|
||
|
| Author: Patrick Reilly <preilly@php.net> |
|
||
|
+----------------------------------------------------------------------+
|
||
|
*/
|
||
|
|
||
|
#ifndef V8JS_TIMER_H
|
||
|
#define V8JS_TIMER_H
|
||
|
|
||
|
void v8js_timer_thread(TSRMLS_D);
|
||
|
void v8js_timer_push(long time_limit, long memory_limit, php_v8js_ctx *c TSRMLS_DC);
|
||
|
|
||
|
#endif /* V8JS_TIMER_H */
|
||
|
|
||
|
/*
|
||
|
* Local variables:
|
||
|
* tab-width: 4
|
||
|
* c-basic-offset: 4
|
||
|
* End:
|
||
|
* vim600: noet sw=4 ts=4 fdm=marker
|
||
|
* vim<600: noet sw=4 ts=4
|
||
|
*/
|