Jason Greeme < jason@inetgurus.net / jason@php.net >
-TODO Complete
-------------------------------------------------
-Make Async Safe X
-Implement wait.h macros as functions
-Platform Checks in config.m4
-
-
+----------------------------------------------------------------------+
*/
+/* $Id$ */
+
#define PCNTL_DEBUG 0
#if PCNTL_DEBUG
void pcntl_zend_extension_statement_handler(zend_op_array *op_array)
{
zend_llist_element *element;
- zval *param, *call_name, *retval;
+ zval *param, *call_name, *retval;
char *func_name;
TSRMLS_FETCH();
+----------------------------------------------------------------------+
*/
+/* $Id$ */
+
#ifndef PHP_PCNTL_H
#define PHP_PCNTL_H
int processing_signal_queue;
ZEND_END_MODULE_GLOBALS(pcntl)
#ifdef ZTS
-# define PCNTL_G(v) TSRMG(pcntl_globals_id, zend_pcntl_globals *, v)
+#define PCNTL_G(v) TSRMG(pcntl_globals_id, zend_pcntl_globals *, v)
#else
-# define PCNTL_G(v) (pcntl_globals.v)
+#define PCNTL_G(v) (pcntl_globals.v)
#endif
#endif /* PHP_PCNTL_H */
+----------------------------------------------------------------------+
*/
+/* $Id$ */
+
#include "php_signal.h"
/* php_signal using sigaction is taken verbatim from Advanced Programing
+----------------------------------------------------------------------+
*/
+/* $Id$ */
+
#include <signal.h>
#ifndef PHP_SIGNAL_H
#define PHP_SIGNAL_H