projet-systeme-exploitation.../jobs.h

22 lines
407 B
C
Raw Normal View History

2021-04-20 16:12:44 +00:00
#ifndef __JOBS_H
#define __JOBS_H
typedef struct cell cell;
struct cell {
int id;
2021-04-20 16:50:27 +00:00
int pid;
char* cmd;
2021-04-20 16:12:44 +00:00
cell* next;
};
typedef cell* list;
2021-04-21 11:50:58 +00:00
void ajouter(cell** list, int pid, int id, char*** cmd);
2021-04-20 16:12:44 +00:00
void supprimer(cell** list, int pid);
void afficher(cell** list);
void initialiser(list* list);
void liberer(list* list);
int contiens(list* l_ptr, int pid);
2021-04-21 11:50:58 +00:00
cell* trouver(list* l_ptr, int pid);
2021-04-20 16:12:44 +00:00
2021-04-21 11:50:58 +00:00
#endif