File: pcntl.xml

package info (click to toggle)
phpdoc 20020310-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 35,272 kB
  • ctags: 354
  • sloc: xml: 799,767; php: 1,395; cpp: 500; makefile: 200; sh: 140; awk: 51
file content (535 lines) | stat: -rwxr-xr-x 17,686 bytes parent folder | download
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
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
 <reference id="ref.pcntl">
  <title>Contr&ocirc;le des processus</title>
  <titleabbrev>PCNTL</titleabbrev>
  <partintro>
   <para>
    Le gestionnaire de contr&ocirc;le des processus n'est pas activ&eacute; par d&eacute;faut.
    Il faut utiliser l'option de configuration
    <link linkend="install.configure.enable-pcntl">--enable-pcntl</link>
    lors de la compilation de PHP pour l'activer.
   </para>
   <para>
    La liste suivante rassemble tous les signaux qui sont actuellement
    support&eacute;s par les fonctions de gestion des processus de PHP. Reportez
    vous &agrave; votre manuel pour plus de d&eacute;tails sur les comportements de ces
    signaux.
   <table>
    <title>Signaux support&eacute;s</title>
    <tgroup cols="2">
     <tbody>
      <row>
       <entry><literal>SIG_IGN</literal></entry>
       <entry><literal>SIGFPE</literal></entry>
       <entry><literal>SIGCONT</literal></entry>
      </row>
      <row>
       <entry><literal>SIG_DFL</literal></entry>
       <entry><literal>SIGKILL</literal></entry>
       <entry><literal>SIGSTOP</literal></entry>
      </row>
      <row>
       <entry><literal>SIG_ERR</literal></entry>
       <entry><literal>SIGUSR1</literal></entry>
       <entry><literal>SIGTSTP</literal></entry>
      </row>
      <row>
       <entry><literal>SIGHUP</literal></entry>
       <entry><literal>SIGUSR2</literal></entry>
       <entry><literal>SIGTTIN</literal></entry>
      </row>
      <row>
       <entry><literal>SIGINT</literal></entry>
       <entry><literal>SIGSEGV</literal></entry>
       <entry><literal>SIGTTOU</literal></entry>
      </row>
      <row>
       <entry><literal>SIGQUIT</literal></entry>
       <entry><literal>SIGPIPE</literal></entry>
       <entry><literal>SIGURG</literal></entry>
      </row>
      <row>
       <entry><literal>SIGILL</literal></entry>
       <entry><literal>SIGALRM</literal></entry>
       <entry><literal>SIGXCPU</literal></entry>
      </row>
      <row>
       <entry><literal>SIGTRAP</literal></entry>
       <entry><literal>SIGTERM</literal></entry>
       <entry><literal>SIGXFSZ</literal></entry>
      </row>
      <row>
       <entry><literal>SIGABRT</literal></entry>
       <entry><literal>SIGSTKFLT</literal></entry>
       <entry><literal>SIGVTALRM</literal></entry>
      </row>
      <row>
       <entry><literal>SIGIOT</literal></entry>
       <entry><literal>SIGCHLD</literal></entry>
       <entry><literal>SIGPROF</literal></entry>
      </row>
      <row>
       <entry><literal>SIGBUS</literal></entry>
       <entry><literal>SIGCLD</literal></entry>
       <entry><literal>SIGWINCH</literal></entry>
      </row>
      <row>
       <entry><literal>SIGPOLL</literal></entry>
       <entry><literal>SIGIO</literal></entry>
       <entry><literal>SIGPWR</literal></entry>
      </row>
      <row>
       <entry><literal>SIGSYS</literal></entry>
       <entry><literal></literal></entry>
       <entry><literal></literal></entry>
      </row>
     </tbody>
    </tgroup>
   </table>
   </para>


   <sect1 id="pcntl-example">
    <title>Exemple de contr&ocirc;le de processus</title>
    <para>
     Cet exemple effectue un fork du processus d&eacute;mon gr&acirc;ce &agrave; un gestionnaire de
     signaux.
    </para>
    <example>
     <title>Process Control Example</title>
     <programlisting role="php">
&lt;?php
  $pid = pcntl_fork();
  if ($pid == -1) {
     die("could not fork"); 
  } else if ($pid) {
     exit(); // we are the parent 
  } else {
     // we are the child
  }

// detatch from the controlling terminal
  if (!posix_setsid()) {
    die("could not detach from terminal");
  }

// setup signal handlers
  pcntl_signal(SIGTERM, "sig_handler");
  pcntl_signal(SIGHUP, "sig_handler");

// loop forever performing tasks
  while(1) {
    // do something interesting here
}

function sig_handler($signo) {
     switch($signo) {
         case SIGTERM:
             // handle shutdown tasks
             exit;
             break;
         case SIGHUP:
             // handle restart tasks
             break;
         default:
             // handle all other signals
     }
}
?&lt;
     </programlisting>
    </example>
   </sect1>
  </partintro>
 <refentry id="function.pcntl-fork">
  <refnamediv>
   <refname>pcntl_fork</refname>
   <refpurpose>Forks the currently running process</refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_fork</methodname>
     <void/>
    </methodsynopsis>
   <para>
    <function>pcntl_fork</function> cr&eacute;e un processus fils, qui ne diff&egrave;re du
    processus p&egrave;re que par l'identifiant de processus et l'identifiant
    PPID. Reportez vous &agrave; la page de man fork(2) pour avoir des d&eacute;tails
    sur le comportement de cette fonction sur votre syst&egrave;me.
   </para>
   <para>
    En cas de succ&egrave;s, le PID (identifiant de processus) du fils est retourn&eacute;
    dans le processus p&egrave;re, et 0 est retourn&eacute; dans le processus fils. En cas 
    d'&eacute;chec, -1 est retourn&eacute; dans le contexte du p&egrave;re, aucun processu fils ne
    sera cr&eacute;&eacute; et PHP l&egrave;vera une erreur.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_waitpid</function> et
    <function>pcntl_signal</function>.
   </para>
  </refsect1>
 </refentry>

 <refentry id="function.pcntl-signal">
  <refnamediv>
   <refname>pcntl_signal</refname>
   <refpurpose>Installe un gestionnaire de signaux</refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>bool</type><methodname>pcntl_signal</methodname>
     <methodparam><type>int</type><parameter>signo</parameter></methodparam>
     <methodparam><type>mixed</type><parameter>handle</parameter></methodparam>
    </methodsynopsis>
   <para>
    <function>pcntl_signal</function> installe un nouveau gestionnaire
    de signaux opur le signal indiqu&eacute; par le param&egrave;tre 
    <parameter>signo</parameter>.  Le gestionnaire de signaux est affect&eacute;
    &agrave; <parameter>handler</parameter> qui peut &ecirc;tre le nom d'une fonction
    utilisateur, ou bien l'une des deux constantes globales
    <constant>SIG_IGN</constant> et <constant>SIG_DFL</constant>.
   </para>
   <para>
    <function>pcntl_signal</function> retourne &true; en cas de
    succ&egrave;s et &false; en cas d'&eacute;chec.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_fork</function> et
    <function>pcntl_waitpid</function>.
   </para>
  </refsect1>
 </refentry>

 <refentry id="function.pcntl-waitpid">
  <refnamediv>
   <refname>pcntl_waitpid</refname>
   <refpurpose>Attend la fin de l'ex&eacute;cution d'un processus fils</refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_waitpid</methodname>
     <methodparam><type>int</type><parameter>pid</parameter></methodparam>
     <methodparam><type>int</type><parameter>status</parameter></methodparam>
     <methodparam><type>int</type><parameter>options</parameter></methodparam>
    </methodsynopsis>
   <para>
    <function>pcntl_waitpid</function> suspend l'ex&eacute;cution du processus
    courant jusqu'&agrave; ce que un processus fils sp&eacute;cifi&eacute; par le param&egrave;tre
    <parameter>pid</parameter> ait termin&eacute;, ou bien qu'un signal ait mis
    fin &agrave; ce processus ou qu'un signal ait appel&eacute; un gestionnaire de signaux.
    Si le processus fils identifi&eacute; par <parameter>pid</parameter> est d&eacute;j&agrave;
    termin&eacute; au moment de l'appel de cette fonction (on les appelle
    des processus "zombie"), la fonction se termine imm&eacute;diatement.
    Toute ressource syst&egrave;me utilis&eacute; par le processus fils est lib&eacute;r&eacute;e.
    Reportez vous &agrave; la page de man waitpid(2) pour avoir des d&eacute;tails
    sur le comportement de cette fonction sur votre syst&egrave;me.
   </para>
   <para>
    <function>pcntl_waitpid</function> retourne l'identifiant de 
    processus du processus fils qui s'est termin&eacute;, ou bien -1 en cas
    d'erreur ou encore z&eacute;ro si <constant>WNOHANG</constant> a &eacute;t&eacute; utilis&eacute;e
    et qu'aucun processus fils n'&eacute;tait disponible.
   </para>
   <para>
    Le param&egrave;tre <parameter>pid</parameter> peut prendre l'une des valeurs
    suivantes :
    <table>
     <title>Valeurs possibles de <parameter>pid</parameter></title>
     <tgroup cols="2">
      <tbody>
       <row>
	<entry><literal>&lt; -1</literal></entry>
	<entry>
	 attend que tous les processus fils dont l'identifiant de groupe
	 est &eacute;gal &agrave; la valeur absolue de <parameter>pid</parameter> soient 
	 termin&eacute;s.
	</entry>
       </row>
       <row>
	<entry><literal>-1</literal></entry>
	<entry>
	 attend que tous les processus fils soient termin&eacute;s. Ceci est le
	 m&ecirc;me comportement que celui de la fonction <function>wait</function>.
	</entry>
       </row>
       <row>
        <entry><literal>0</literal></entry>
        <entry>
	 attend que tous les processus fils dont l'identifiant de groupe
	 est &eacute;gal &agrave; celui du processus courant soient termin&eacute;s.
        </entry>
       </row>
       <row>
        <entry><literal>&gt; 0</literal></entry>
        <entry>
	 attend que le processus fils dont l'identifiant est
	 &eacute;gal &agrave; <parameter>pid</parameter> soit termin&eacute;.
        </entry>
       </row>
      </tbody>
     </tgroup>
    </table>
   </para>
   <para>
    <function>pcntl_waitpid</function> enregistrera des informations sur
    le statut courant du processus dans le param&egrave;tre 
    <parameter>status</parameter>, qui peut &ecirc;tre acc&eacute;d&eacute; avec les
    fonctions suivantes :
    <function>pcntl_wifexited</function>,
    <function>pcntl_wifstopped</function>,
    <function>pcntl_wifsignaled</function>,
    <function>pcntl_wexitstatus</function>,
    <function>pcntl_wtermsig</function> et
    <function>pcntl_wstopsig</function>.
   </para>
   <para>
    Le param&egrave;tre <parameter>options</parameter> peut prendre la valeur
    de z&eacute;ro, ou plusieurs des constantes globales suivantes 
    (combinez les avec l'op&eacute;rateur <literal>OR</literal>) :
    <table>
     <title>Valeurs possibles de <parameter>options</parameter></title>
     <tgroup cols="2">
      <tbody>
       <row>
        <entry><literal>WNOHANG</literal></entry>
        <entry>
	 retourne imm&eacute;diatement si aucun processus fils ne s'est termin&eacute;.
	</entry>
       </row>
       <row>
        <entry><literal>WUNTRACED</literal></entry>
        <entry>
        retourne lorsque les processus fils sont arr&ecirc;t&eacute;s et que leur
        status n'a pas &eacute;t&eacute; mis &agrave; jour.
        </entry>
       </row>
      </tbody>
     </tgroup>
    </table>
   </para>
   <para>
    Voir aussi 
    <function>pcntl_fork</function>,
    <function>pcntl_signal</function>,
    <function>pcntl_wifexited</function>,
    <function>pcntl_wifstopped</function>,
    <function>pcntl_wifsignaled</function>,
    <function>pcntl_wexitstatus</function>,
    <function>pcntl_wtermsig</function> et
    <function>pcntl_wstopsig</function>.
   </para>
  </refsect1>
 </refentry>


 <refentry id="function.pcntl-wexitstatus">
  <refnamediv>
   <refname>pcntl_wexitstatus</refname>
   <refpurpose>
    Retourne le code d'un processus fils termin&eacute;
   </refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_wexitstatus</methodname>
     <methodparam><type>int</type><parameter>status</parameter></methodparam>      
    </methodsynopsis>
   <para>
    <function>pcntl_wexitstatus</function> retourne le code de retour
    du processus fils. Cette fonction n'est utile que si la fonction
    <function>pcntl_wifexited</function> a retourn&eacute; &true;.
   </para>
   <para>
    Le param&egrave;tre <parameter>status</parameter> est le param&egrave;tre fourni
    &agrave; la fonction <function>pcntl_waitpid</function>, qui avait r&eacute;ussi.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_waitpid</function> et
    <function>pcntl_wifexited</function>.
   </para>
  </refsect1>
 </refentry>


 <refentry id="function.pcntl-wifexited">
  <refnamediv>
   <refname>pcntl_wifexited</refname>
   <refpurpose>
    Retourne &true; si le code de retour repr&eacute;sente une fin normale
   </refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_wifexited</methodname>
     <methodparam><type>int</type><parameter>status</parameter></methodparam>
    </methodsynopsis>
   <para>
    <function>pcntl_wifexited</function> retourne &true; si le processus
    fils a retourn&eacute; un code qui repr&eacute;sente une fin normale.
   </para>
   <para>
    Le param&egrave;tre <parameter>status</parameter> est le param&egrave;tre fourni
    &agrave; la fonction <function>pcntl_waitpid</function>, qui avait r&eacute;ussi.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_waitpid</function> et
    <function>pcntl_wexitstatus</function>.
   </para>
  </refsect1>
 </refentry>


 <refentry id="function.pcntl-wifsignaled">
  <refnamediv>
   <refname>pcntl_wifsignaled</refname>
   <refpurpose>
    Returns &true; if status code represents a termination due to a
    signal
   </refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_wifsignaled</methodname>
     <methodparam><type>int</type><parameter>status</parameter></methodparam>
    </methodsynopsis>
   <para>
    Returns &true; if the child process exited because of a signal
    which was not caught.
   </para>
   <para>
    Le param&egrave;tre <parameter>status</parameter> est le param&egrave;tre fourni
    &agrave; la fonction <function>pcntl_waitpid</function>, qui avait r&eacute;ussi.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_waitpid</function> et
    <function>pcntl_signal</function>.
   </para>
  </refsect1>
 </refentry>


 <refentry id="function.pcntl-wifstopped">
  <refnamediv>
   <refname>pcntl_wifstopped</refname>
   <refpurpose>
    Returns &true; if child process is currently stopped
   </refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_wifstopped</methodname>
     <methodparam><type>int</type><parameter>status</parameter></methodparam>
    </methodsynopsis>
   <para>
    Returns &true; if the child process which caused the return is
    currently stopped; this is only possible if the call to
    <function>pcntl_waitpid</function> was done using the option
    <literal>WUNTRACED</literal>.
   </para>
   <para>
    Le param&egrave;tre <parameter>status</parameter> est le param&egrave;tre fourni
    &agrave; la fonction <function>pcntl_waitpid</function>, qui avait r&eacute;ussi.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_waitpid</function>.
   </para>
  </refsect1>
 </refentry>


 <refentry id="function.pcntl-wstopsig">
  <refnamediv>
   <refname>pcntl_wstopsig</refname>
   <refpurpose>
    Returns the signal which caused the child to stop
   </refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_wstopsig</methodname>
     <methodparam><type>int</type><parameter>status</parameter></methodparam>
    </methodsynopsis>
   <para>
    Returns the number of the signal which caused the child to stop.
    This function is only useful if
    <function>pcntl_wifstopped</function> returned &true;.
   </para>
   <para>
    Le param&egrave;tre <parameter>status</parameter> est le param&egrave;tre fourni
    &agrave; la fonction <function>pcntl_waitpid</function>, qui avait r&eacute;ussi.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_waitpid</function> et
    <function>pcntl_wifstopped</function>.
   </para>
  </refsect1>
 </refentry>


 <refentry id="function.pcntl-wtermsig">
  <refnamediv>
   <refname>pcntl_wtermsig</refname>
   <refpurpose>
    Returns the signal which caused the child to terminate
   </refpurpose>
  </refnamediv>
  <refsect1>
   <title>Description</title>
    <methodsynopsis>
     <type>int</type><methodname>pcntl_wtermsig</methodname>
     <methodparam><type>int</type><parameter>status</parameter></methodparam>
    </methodsynopsis>
   <para>
    Returns the number of the signal that caused the child process to
    terminate. This function is only useful if
    <function>pcntl_wifsignaled</function> returned &true;.
   </para>
   <para>
    Le param&egrave;tre <parameter>status</parameter> est le param&egrave;tre fourni
    &agrave; la fonction <function>pcntl_waitpid</function>, qui avait r&eacute;ussi.
   </para>
   <para>
    Voir aussi 
    <function>pcntl_waitpid</function>,
    <function>pcntl_signal</function> et
    <function>pcntl_wifsignaled</function>.
   </para>
  </refsect1>
 </refentry>
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->