summaryrefslogtreecommitdiff
path: root/ext/pcntl
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-10-13 14:14:50 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-10-13 14:14:50 +0200
commit902d39a3a79c6efe93c8879575fdd5a759cf03de (patch)
treee6ec0af8ac4333de34f581c2c7b5a2eb93e635a1 /ext/pcntl
parent581f0141b6dd8d20e71612f90b01507ed0783db8 (diff)
downloadphp-git-902d39a3a79c6efe93c8879575fdd5a759cf03de.tar.gz
Trim trailing whitespace in source code files
Diffstat (limited to 'ext/pcntl')
-rw-r--r--ext/pcntl/README4
-rw-r--r--ext/pcntl/package.xml14
-rw-r--r--ext/pcntl/pcntl.c4
3 files changed, 11 insertions, 11 deletions
diff --git a/ext/pcntl/README b/ext/pcntl/README
index 7b80924e49..34313b2040 100644
--- a/ext/pcntl/README
+++ b/ext/pcntl/README
@@ -1,8 +1,8 @@
Process Control Module for PHP (pcntl)
This module will attempt to implement all features related to process spawning and
-control (fork(), waitpid(), signal(), WIF's, etc). This is extremely experimental,
-with hope to become stable on most UNIX's. I greatly apreciate any feedback, fixes,
+control (fork(), waitpid(), signal(), WIF's, etc). This is extremely experimental,
+with hope to become stable on most UNIX's. I greatly apreciate any feedback, fixes,
and or suggestions on how to improve/better implement
this functionality.
diff --git a/ext/pcntl/package.xml b/ext/pcntl/package.xml
index b9127395c2..e6498bffc9 100644
--- a/ext/pcntl/package.xml
+++ b/ext/pcntl/package.xml
@@ -12,13 +12,13 @@
</maintainer>
</maintainers>
<description>
-This module contains an interface to those functions defined
-in the IEEE 1003.1 (POSIX.1) standards document which are not
-accessible through other means. POSIX.1 for example defined the
-open(), read(), write() and close() functions, too, which
-traditionally have been part of PHP for a long time. Some more
-system specific functions have not been available before, though,
-and this module tries to remedy this by providing easy access
+This module contains an interface to those functions defined
+in the IEEE 1003.1 (POSIX.1) standards document which are not
+accessible through other means. POSIX.1 for example defined the
+open(), read(), write() and close() functions, too, which
+traditionally have been part of PHP for a long time. Some more
+system specific functions have not been available before, though,
+and this module tries to remedy this by providing easy access
to these functions.
</description>
<license>PHP</license>
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
index 3d6cb0775f..228111d351 100644
--- a/ext/pcntl/pcntl.c
+++ b/ext/pcntl/pcntl.c
@@ -187,7 +187,7 @@ const zend_function_entry pcntl_functions[] = {
PHP_FE(pcntl_alarm, arginfo_pcntl_alarm)
PHP_FE(pcntl_get_last_error, arginfo_pcntl_void)
PHP_FALIAS(pcntl_errno, pcntl_get_last_error, NULL)
- PHP_FE(pcntl_strerror, arginfo_pcntl_strerror)
+ PHP_FE(pcntl_strerror, arginfo_pcntl_strerror)
#ifdef HAVE_GETPRIORITY
PHP_FE(pcntl_getpriority, arginfo_pcntl_getpriority)
#endif
@@ -764,7 +764,7 @@ PHP_FUNCTION(pcntl_wait)
#undef PHP_RUSAGE_COMMON
#undef PHP_RUSAGE_TO_ARRAY
-/* {{{ proto bool pcntl_wifexited(int status)
+/* {{{ proto bool pcntl_wifexited(int status)
Returns true if the child status code represents a successful exit */
PHP_FUNCTION(pcntl_wifexited)
{