On Tue, 18 Mar 2003 12:20:53 +0100
"gplservice.fr Sylvain Letuffe" <sylvain@???> wrote:
> /* @(#) lapins.c ( lapins plus calmes ) */
>
> #include <unistd.h>
> #include <stdlib.h>
> #include <stdio.h>
>
>
> int main( void )
> {
> int nbprocess=0 ;
>
> for (;;) /* BOUCLE INFINIE */
> {
> switch ( fork() )
> {
> }
> nbprocess++ ;
> }
> sleep(2);
> }
Questions:
- pourquoi "switch(fork())" et pas "if(fork() == -1) exit(1);", ou meme
juste "fork();"
- a quoi sert nbprocess, a part l'incrementer tu t'en sers jamais.
- a quoi sert sleep(2)?
--
Pierre