10

Lancer un processus fils et exécuter une commande

  1. /*
  2.  * Forks and execs date command.
  3.  *
  4.  *   fork
  5.  *   execl
  6.  *   wait
  7.  *   WEXITSTATUS
  8.  */
  9.  
  10. #include <sys/types.h>
  11. #include <sys/wait.h>
  12. #include <unistd.h>
  13.  
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <errno.h>
  17. #if defined( LINUX )
  18. #include <string.h>
  19. #endif
  20.  
  21. #define PROGPATH                "/usr/bin/date"
  22. #define PROGNAME                "date"
  23.  
  24. int main( int argc, char **argv ) {
  25.     int pid, status, died;
  26.  
  27.     pid = fork();
  28.  
  29.     if ( pid == -1 ) { /* error */
  30.         fprintf( stderr, "%s\n", strerror( errno ) );
  31.         exit( 1 );
  32.     }
  33.  
  34.     if ( pid == 0 ) { /* child */
  35.         execl( PROGPATH, PROGNAME, (void *) 0 ); /* shouldn't return */
  36.         /* error! */
  37.         fprintf( stderr, "%s\n", strerror( errno ) );
  38.         exit( 1 );
  39.     }
  40.  
  41.     /* wait for child */
  42.     died = wait( &status );
  43.     exit( WEXITSTATUS( status ) );
  44. }

Commentaires

Votre commentaire :
[p] [b] [i] [u] [s] [quote] [pre] [br] [code] [url] [email] strip aide 2000

Entrez un maximum de 2000 caractères.
Améliorez la présentation de votre texte avec les balises de formatage suivantes :
[p]paragraphe[/p], [b]gras[/b], [i]italique[/i], [u]souligné[/u], [s]barré[/s], [quote]citation[/quote], [pre]tel quel[/pre], [br]à la ligne,
[url]http://www.izend.org[/url], [url=http://www.izend.org]site[/url], [email]izend@izend.org[/email], [email=izend@izend.org]izend[/email],
[code]commande[/code], [code=langage]code source en c, java, php, html, javascript, xml, css, sql, bash, dos, make, etc.[/code].