37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Copyright © The PHP Group and Contributors. |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to the Modified BSD License that is |
|
|
| bundled with this package in the file LICENSE, and is available |
|
|
| through the World Wide Web at <https://www.php.net/license/>. |
|
|
| |
|
|
| SPDX-License-Identifier: BSD-3-Clause |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Kévin Dunglas <kevin@dunglas.dev> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef ZEND_MAX_EXECUTION_TIMER_H
|
|
#define ZEND_MAX_EXECUTION_TIMER_H
|
|
|
|
# ifdef ZEND_MAX_EXECUTION_TIMERS
|
|
|
|
#include "zend_long.h"
|
|
|
|
BEGIN_EXTERN_C()
|
|
/* Must be called after calls to fork() */
|
|
ZEND_API void zend_max_execution_timer_init(void);
|
|
END_EXTERN_C()
|
|
void zend_max_execution_timer_settime(zend_long seconds);
|
|
void zend_max_execution_timer_shutdown(void);
|
|
|
|
# else
|
|
|
|
#define zend_max_execution_timer_init()
|
|
#define zend_max_execution_timer_settime(seconds)
|
|
#define zend_max_execution_timer_shutdown()
|
|
|
|
# endif
|
|
#endif
|