00001 /** 00002 * @file systeme.h 00003 * @brief Entete de systeme.c 00004 */ 00005 00006 #ifndef SYSTEME_H 00007 #define SYSTEME_H 00008 00009 #include "interpreteur.h" 00010 #include "fifo.h" 00011 00012 00013 /// Handler interceptant SIGUSR1 00014 void top_horloge_handler (int sig); 00015 00016 /// Handler interceptant SIGUSR2 00017 void interface_handler (int sig); 00018 00019 00020 #endif