v8js_timer.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2013 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | http://www.opensource.org/licenses/mit-license.php MIT License |
  8. +----------------------------------------------------------------------+
  9. | Author: Jani Taskinen <[email protected]> |
  10. | Author: Patrick Reilly <[email protected]> |
  11. +----------------------------------------------------------------------+
  12. */
  13. #ifndef V8JS_TIMER_H
  14. #define V8JS_TIMER_H
  15. void v8js_timer_thread(TSRMLS_D);
  16. void v8js_timer_push(long time_limit, long memory_limit, php_v8js_ctx *c TSRMLS_DC);
  17. #endif /* V8JS_TIMER_H */
  18. /*
  19. * Local variables:
  20. * tab-width: 4
  21. * c-basic-offset: 4
  22. * End:
  23. * vim600: noet sw=4 ts=4 fdm=marker
  24. * vim<600: noet sw=4 ts=4
  25. */