summaryrefslogtreecommitdiff
path: root/ext/pcntl
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2001-10-11 23:33:59 +0000
committerStig Bakken <ssb@php.net>2001-10-11 23:33:59 +0000
commit689252082c2660e2b6fddc674047922d8b2c7845 (patch)
treea6d3a9bff0ae6f205098017ecb84ebb1b1f74460 /ext/pcntl
parent405142087ca9f49f6f480e29541bb3fe05847fe8 (diff)
downloadphp-git-689252082c2660e2b6fddc674047922d8b2c7845.tar.gz
* zend_module_entry change: apino, debug and zts are moved first,
see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
Diffstat (limited to 'ext/pcntl')
-rwxr-xr-xext/pcntl/pcntl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
index 8663a539af..fdc9740721 100755
--- a/ext/pcntl/pcntl.c
+++ b/ext/pcntl/pcntl.c
@@ -55,12 +55,15 @@ function_entry pcntl_functions[] = {
};
zend_module_entry pcntl_module_entry = {
- "pcntl", pcntl_functions,
+ STANDARD_MODULE_HEADER,
+ "pcntl",
+ pcntl_functions,
PHP_MINIT(pcntl),
PHP_MSHUTDOWN(pcntl),
NULL,
NULL,
PHP_MINFO(pcntl),
+ NO_VERSION_YET,
STANDARD_MODULE_PROPERTIES
};