Diff for /rpl/src/daemon.c between versions 1.14 and 1.32

version 1.14, 2010/08/13 21:00:37 version 1.32, 2011/09/14 17:55:59
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.18    RPL/2 (R) version 4.1.3
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2011 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 58  lancement_daemon(struct_processus *s_eta Line 58  lancement_daemon(struct_processus *s_eta
      */       */
   
     fflush(NULL);      fflush(NULL);
   
     pid = fork();      pid = fork();
   
 #   ifdef OS2  #   ifdef OS2
Line 79  lancement_daemon(struct_processus *s_eta Line 80  lancement_daemon(struct_processus *s_eta
     if (pid > 0)      if (pid > 0)
     {      {
         // Fin du processus père.          // Fin du processus père.
           destruction_queue_signaux(s_etat_processus);
         _exit(EXIT_SUCCESS);          _exit(EXIT_SUCCESS);
     }      }
   
Line 130  lancement_daemon(struct_processus *s_eta Line 132  lancement_daemon(struct_processus *s_eta
     }      }
   
     (*s_etat_processus).pid_processus_pere = getpid();      (*s_etat_processus).pid_processus_pere = getpid();
       creation_queue_signaux(s_etat_processus);
     modification_pid_thread_pere(s_etat_processus);      modification_pid_thread_pere(s_etat_processus);
   
     return;      return;

Removed from v.1.14  
changed lines
  Added in v.1.32


CVSweb interface <joel.bertrand@systella.fr>