| Juan Cespedes | ef04ba4 | 1997-08-22 21:55:45 +0200 | [diff] [blame^] | 1 | struct process { |
| 2 | int pid; | ||||
| 3 | struct process * next; | ||||
| 4 | }; | ||||
| 5 | |||||
| 6 | extern struct process * list_of_processes; | ||||
| 7 | |||||
| 8 | int attach_process(const char * file, char * const argv[]); | ||||
| 9 | void init_sighandler(void); | ||||