forked from HvyIndustries/crane-php-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pcntl.php
786 lines (716 loc) · 21.2 KB
/
pcntl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
<?php
// Start of pcntl v.7.0.4-7ubuntu2
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Forks the currently running process
* @link http://php.net/manual/en/function.pcntl-fork.php
* @return int On success, the PID of the child process is returned in the
* parent's thread of execution, and a 0 is returned in the child's
* thread of execution. On failure, a -1 will be returned in the
* parent's context, no child process will be created, and a PHP
* error is raised.
*/
function pcntl_fork(): int {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Waits on or returns the status of a forked child
* @link http://php.net/manual/en/function.pcntl-waitpid.php
* @param int $pid <p>
* The value of <i>pid</i> can be one of the following:
* <table>
* possible values for <i>pid</i>
* <tr valign="top">
* <td>< -1</td>
* <td>
* wait for any child process whose process group ID is equal to
* the absolute value of <i>pid</i>.
* </td>
* </tr>
* <tr valign="top">
* <td>-1</td>
* <td>
* wait for any child process; this is the same behaviour that
* the wait function exhibits.
* </td>
* </tr>
* <tr valign="top">
* <td>0</td>
* <td>
* wait for any child process whose process group ID is equal to
* that of the calling process.
* </td>
* </tr>
* <tr valign="top">
* <td>> 0</td>
* <td>
* wait for the child whose process ID is equal to the value of
* <i>pid</i>.
* </td>
* </tr>
* </table>
* </p>
* <p>
* Specifying -1 as the <i>pid</i> is
* equivalent to the functionality <b>pcntl_wait</b> provides
* (minus <i>options</i>).
* </p>
* @param int $status <p>
* <b>pcntl_waitpid</b> will store status information
* in the <i>status</i> parameter which can be
* evaluated using the following functions:
* <b>pcntl_wifexited</b>,
* <b>pcntl_wifstopped</b>,
* <b>pcntl_wifsignaled</b>,
* <b>pcntl_wexitstatus</b>,
* <b>pcntl_wtermsig</b> and
* <b>pcntl_wstopsig</b>.
* </p>
* @param int $options [optional] <p>
* The value of <i>options</i> is the value of zero
* or more of the following two global constants
* OR'ed together:
* <table>
* possible values for <i>options</i>
* <tr valign="top">
* <td>WNOHANG</td>
* <td>
* return immediately if no child has exited.
* </td>
* </tr>
* <tr valign="top">
* <td>WUNTRACED</td>
* <td>
* return for children which are stopped, and whose status has
* not been reported.
* </td>
* </tr>
* </table>
* </p>
* @return int <b>pcntl_waitpid</b> returns the process ID of the
* child which exited, -1 on error or zero if <b>WNOHANG</b> was used and no
* child was available
*/
function pcntl_waitpid(int $pid, int &$status, int $options = 0): int {}
/**
* (PHP 5, PHP 7)<br/>
* Waits on or returns the status of a forked child
* @link http://php.net/manual/en/function.pcntl-wait.php
* @param int $status <p>
* <b>pcntl_wait</b> will store status information
* in the <i>status</i> parameter which can be
* evaluated using the following functions:
* <b>pcntl_wifexited</b>,
* <b>pcntl_wifstopped</b>,
* <b>pcntl_wifsignaled</b>,
* <b>pcntl_wexitstatus</b>,
* <b>pcntl_wtermsig</b> and
* <b>pcntl_wstopsig</b>.
* </p>
* @param int $options [optional] <p>
* If wait3 is available on your system (mostly BSD-style systems), you can
* provide the optional <i>options</i> parameter. If this
* parameter is not provided, wait will be used for the system call. If
* wait3 is not available, providing a value for <i>options
* </i> will have no effect. The value of <i>options
* </i> is the value of zero or more of the following two constants
* OR'ed together:
* <table>
* Possible values for <i>options</i>
* <tr valign="top">
* <td>WNOHANG</td>
* <td>
* Return immediately if no child has exited.
* </td>
* </tr>
* <tr valign="top">
* <td>WUNTRACED</td>
* <td>
* Return for children which are stopped, and whose status has
* not been reported.
* </td>
* </tr>
* </table>
* </p>
* @return int <b>pcntl_wait</b> returns the process ID of the
* child which exited, -1 on error or zero if WNOHANG was provided as an
* option (on wait3-available systems) and no child was available.
*/
function pcntl_wait(int &$status, int $options = 0): int {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Installs a signal handler
* @link http://php.net/manual/en/function.pcntl-signal.php
* @param int $signo <p>
* The signal number.
* </p>
* @param callable|int $handler <p>
* The signal handler. This may be either a callable, which
* will be invoked to handle the signal, or either of the two global
* constants <b>SIG_IGN</b> or <b>SIG_DFL</b>,
* which will ignore the signal or restore the default signal handler
* respectively.
* </p>
* <p>
* If a callable is given, it must implement the following
* signature:
* </p>
* <p>
* void<b>handler</b>
* <b>int<i>signo</i></b>
* <i>signo</i>
* The signal being handled.
* @param bool $restart_syscalls [optional] <p>
* Specifies whether system call restarting should be used when this
* signal arrives.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function pcntl_signal(int $signo, $handler, bool $restart_syscalls = true): bool {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Calls signal handlers for pending signals
* @link http://php.net/manual/en/function.pcntl-signal-dispatch.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function pcntl_signal_dispatch(): bool {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Checks if status code represents a normal exit
* @link http://php.net/manual/en/function.pcntl-wifexited.php
* @param int $status The <i>status</i>
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return bool <b>TRUE</b> if the child status code represents a normal exit, <b>FALSE</b>
* otherwise.
*/
function pcntl_wifexited(int $status): bool {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Checks whether the child process is currently stopped
* @link http://php.net/manual/en/function.pcntl-wifstopped.php
* @param int $status The <i>status</i>
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return bool <b>TRUE</b> if the child process which caused the return is
* currently stopped, <b>FALSE</b> otherwise.
*/
function pcntl_wifstopped(int $status): bool {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Checks whether the status code represents a termination due to a signal
* @link http://php.net/manual/en/function.pcntl-wifsignaled.php
* @param int $status The <i>status</i>
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return bool <b>TRUE</b> if the child process exited because of a signal which was
* not caught, <b>FALSE</b> otherwise.
*/
function pcntl_wifsignaled(int $status): bool {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Returns the return code of a terminated child
* @link http://php.net/manual/en/function.pcntl-wexitstatus.php
* @param int $status The <i>status</i>
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return int the return code, as an integer.
*/
function pcntl_wexitstatus(int $status): int {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Returns the signal which caused the child to terminate
* @link http://php.net/manual/en/function.pcntl-wtermsig.php
* @param int $status The <i>status</i>
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return int the signal number, as an integer.
*/
function pcntl_wtermsig(int $status): int {}
/**
* (PHP 4 >= 4.1.0, PHP 5, PHP 7)<br/>
* Returns the signal which caused the child to stop
* @link http://php.net/manual/en/function.pcntl-wstopsig.php
* @param int $status The <i>status</i>
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return int the signal number.
*/
function pcntl_wstopsig(int $status): int {}
/**
* (PHP 4 >= 4.2.0, PHP 5, PHP 7)<br/>
* Executes specified program in current process space
* @link http://php.net/manual/en/function.pcntl-exec.php
* @param string $path <p>
* <i>path</i> must be the path to a binary executable or a
* script with a valid path pointing to an executable in the shebang (
* #!/usr/local/bin/perl for example) as the first line. See your system's
* man execve(2) page for additional information.
* </p>
* @param array $args [optional] <p>
* <i>args</i> is an array of argument strings passed to the
* program.
* </p>
* @param array $envs [optional] <p>
* <i>envs</i> is an array of strings which are passed as
* environment to the program. The array is in the format of name => value,
* the key being the name of the environmental variable and the value being
* the value of that variable.
* </p>
* @return bool <b>FALSE</b> on error and does not return on success.
*/
function pcntl_exec(string $path, array $args = null, array $envs = null): bool {}
/**
* (PHP 4 >= 4.3.0, PHP 5, PHP 7)<br/>
* Set an alarm clock for delivery of a signal
* @link http://php.net/manual/en/function.pcntl-alarm.php
* @param int $seconds <p>
* The number of seconds to wait. If <i>seconds</i> is
* zero, no new alarm is created.
* </p>
* @return int the time in seconds that any previously scheduled alarm had
* remaining before it was to be delivered, or 0 if there
* was no previously scheduled alarm.
*/
function pcntl_alarm(int $seconds): int {}
/**
* (PHP 5 >= 5.3.4, PHP 7)<br/>
* Retrieve the error number set by the last pcntl function which failed
* @link http://php.net/manual/en/function.pcntl-get-last-error.php
* @return int error code.
*/
function pcntl_get_last_error(): int {}
/**
* (PHP 5 >= 5.3.4, PHP 7)<br/>
* Alias of <b>pcntl_strerror</b>
* @link http://php.net/manual/en/function.pcntl-errno.php
*/
function pcntl_errno() {}
/**
* (PHP 5 >= 5.3.4, PHP 7)<br/>
* Retrieve the system error message associated with the given errno
* @link http://php.net/manual/en/function.pcntl-strerror.php
* @param int $errno <p>
* </p>
* @return string error description on success or <b>FALSE</b> on failure.
*/
function pcntl_strerror(int $errno): string {}
/**
* (PHP 5, PHP 7)<br/>
* Get the priority of any process
* @link http://php.net/manual/en/function.pcntl-getpriority.php
* @param int $pid [optional] <p>
* If not specified, the pid of the current process is used.
* </p>
* @param int $process_identifier [optional] <p>
* One of <b>PRIO_PGRP</b>, <b>PRIO_USER</b>
* or <b>PRIO_PROCESS</b>.
* </p>
* @return int <b>pcntl_getpriority</b> returns the priority of the process
* or <b>FALSE</b> on error. A lower numerical value causes more favorable
* scheduling.
*/
function pcntl_getpriority(int $pid = 'getmypid()', int $process_identifier = PRIO_PROCESS): int {}
/**
* (PHP 5, PHP 7)<br/>
* Change the priority of any process
* @link http://php.net/manual/en/function.pcntl-setpriority.php
* @param int $priority <p>
* <i>priority</i> is generally a value in the range
* -20 to 20. The default priority
* is 0 while a lower numerical value causes more
* favorable scheduling. Because priority levels can differ between
* system types and kernel versions, please see your system's setpriority(2)
* man page for specific details.
* </p>
* @param int $pid [optional] <p>
* If not specified, the pid of the current process is used.
* </p>
* @param int $process_identifier [optional] <p>
* One of <b>PRIO_PGRP</b>, <b>PRIO_USER</b>
* or <b>PRIO_PROCESS</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function pcntl_setpriority(int $priority, int $pid = 'getmypid()', int $process_identifier = PRIO_PROCESS): bool {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Sets and retrieves blocked signals
* @link http://php.net/manual/en/function.pcntl-sigprocmask.php
* @param int $how <p>
* Sets the behavior of <b>pcntl_sigprocmask</b>. Possible
* values:
* <b>SIG_BLOCK</b>: Add the signals to the
* currently blocked signals.
* <b>SIG_UNBLOCK</b>: Remove the signals from the
* currently blocked signals.
* <b>SIG_SETMASK</b>: Replace the currently
* blocked signals by the given list of signals.
* </p>
* @param array $set <p>
* List of signals.
* </p>
* @param array $oldset [optional] <p>
* The <i>oldset</i> parameter is set to an array
* containing the list of the previously blocked signals.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function pcntl_sigprocmask(int $how, array $set, array &$oldset = null): bool {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Waits for signals
* @link http://php.net/manual/en/function.pcntl-sigwaitinfo.php
* @param array $set <p>
* Array of signals to wait for.
* </p>
* @param array $siginfo [optional] <p>
* The <i>siginfo</i> parameter is set to an array containing
* informations about the signal.
* </p>
* <p>
* The following elements are set for all signals:
* signo: Signal number
* errno: An error number
* code: Signal code
* </p>
* <p>
* The following elements may be set for the <b>SIGCHLD</b> signal:
* status: Exit value or signal
* utime: User time consumed
* stime: System time consumed
* pid: Sending process ID
* uid: Real user ID of sending process
* </p>
* <p>
* The following elements may be set for the <b>SIGILL</b>,
* <b>SIGFPE</b>, <b>SIGSEGV</b> and
* <b>SIGBUS</b> signals:
* addr: Memory location which caused fault
* </p>
* <p>
* The following element may be set for the <b>SIGPOLL</b>
* signal:
* band: Band event
* fd: File descriptor number
* </p>
* @return int On success, <b>pcntl_sigwaitinfo</b> returns a signal number.
*/
function pcntl_sigwaitinfo(array $set, array &$siginfo = null): int {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Waits for signals, with a timeout
* @link http://php.net/manual/en/function.pcntl-sigtimedwait.php
* @param array $set <p>
* Array of signals to wait for.
* </p>
* @param array $siginfo [optional] <p>
* The <i>siginfo</i> is set to an array containing
* informations about the signal. See
* <b>pcntl_sigwaitinfo</b>.
* </p>
* @param int $seconds [optional] <p>
* Timeout in seconds.
* </p>
* @param int $nanoseconds [optional] <p>
* Timeout in nanoseconds.
* </p>
* @return int On success, <b>pcntl_sigtimedwait</b> returns a signal number.
*/
function pcntl_sigtimedwait(array $set, array &$siginfo = null, int $seconds = 0, int $nanoseconds = 0): int {}
/**
* @param $status
*/
function pcntl_wifcontinued($status) {}
define ('WNOHANG', 1);
define ('WUNTRACED', 2);
define ('WCONTINUED', 8);
define ('SIG_IGN', 1);
define ('SIG_DFL', 0);
define ('SIG_ERR', -1);
define ('SIGHUP', 1);
define ('SIGINT', 2);
define ('SIGQUIT', 3);
define ('SIGILL', 4);
define ('SIGTRAP', 5);
define ('SIGABRT', 6);
define ('SIGIOT', 6);
define ('SIGBUS', 7);
define ('SIGFPE', 8);
define ('SIGKILL', 9);
define ('SIGUSR1', 10);
define ('SIGSEGV', 11);
define ('SIGUSR2', 12);
define ('SIGPIPE', 13);
define ('SIGALRM', 14);
define ('SIGTERM', 15);
define ('SIGSTKFLT', 16);
define ('SIGCLD', 17);
define ('SIGCHLD', 17);
define ('SIGCONT', 18);
define ('SIGSTOP', 19);
define ('SIGTSTP', 20);
define ('SIGTTIN', 21);
define ('SIGTTOU', 22);
define ('SIGURG', 23);
define ('SIGXCPU', 24);
define ('SIGXFSZ', 25);
define ('SIGVTALRM', 26);
define ('SIGPROF', 27);
define ('SIGWINCH', 28);
define ('SIGPOLL', 29);
define ('SIGIO', 29);
define ('SIGPWR', 30);
define ('SIGSYS', 31);
define ('SIGBABY', 31);
define ('PRIO_PGRP', 1);
define ('PRIO_USER', 2);
define ('PRIO_PROCESS', 0);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SIG_BLOCK', 0);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SIG_UNBLOCK', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SIG_SETMASK', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SI_USER', 0);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SI_KERNEL', 128);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SI_QUEUE', -1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SI_TIMER', -2);
define ('SI_MESGQ', -3);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SI_ASYNCIO', -4);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SI_SIGIO', -5);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SI_TKILL', -6);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('CLD_EXITED', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('CLD_KILLED', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('CLD_DUMPED', 3);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('CLD_TRAPPED', 4);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('CLD_STOPPED', 5);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('CLD_CONTINUED', 6);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('TRAP_BRKPT', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('TRAP_TRACE', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('POLL_IN', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('POLL_OUT', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('POLL_MSG', 3);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('POLL_ERR', 4);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('POLL_PRI', 5);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('POLL_HUP', 6);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_ILLOPC', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_ILLOPN', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_ILLADR', 3);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_ILLTRP', 4);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_PRVOPC', 5);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_PRVREG', 6);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_COPROC', 7);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('ILL_BADSTK', 8);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_INTDIV', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_INTOVF', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_FLTDIV', 3);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_FLTOVF', 4);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_FLTUND', 7);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_FLTRES', 6);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_FLTINV', 7);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('FPE_FLTSUB', 8);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SEGV_MAPERR', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('SEGV_ACCERR', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('BUS_ADRALN', 1);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('BUS_ADRERR', 2);
/**
* Available since PHP 5.3.0.
* @link http://php.net/manual/en/pcntl.constants.php
*/
define ('BUS_OBJERR', 3);
define ('PCNTL_EINTR', 4);
define ('PCNTL_ECHILD', 10);
define ('PCNTL_EINVAL', 22);
define ('PCNTL_EAGAIN', 11);
define ('PCNTL_ESRCH', 3);
define ('PCNTL_EACCES', 13);
define ('PCNTL_EPERM', 1);
define ('PCNTL_ENOMEM', 12);
define ('PCNTL_E2BIG', 7);
define ('PCNTL_EFAULT', 14);
define ('PCNTL_EIO', 5);
define ('PCNTL_EISDIR', 21);
define ('PCNTL_ELIBBAD', 80);
define ('PCNTL_ELOOP', 40);
define ('PCNTL_EMFILE', 24);
define ('PCNTL_ENAMETOOLONG', 36);
define ('PCNTL_ENFILE', 23);
define ('PCNTL_ENOENT', 2);
define ('PCNTL_ENOEXEC', 8);
define ('PCNTL_ENOTDIR', 20);
define ('PCNTL_ETXTBSY', 26);
// End of pcntl v.7.0.4-7ubuntu2
?>