blob: 7afa6ee656ce453b8fb88f6d42e3e8f3dc902441 [file] [log] [blame]
Juan Cespedesef04ba41997-08-22 21:55:45 +02001struct process {
2 int pid;
3 struct process * next;
4};
5
6extern struct process * list_of_processes;
7
8int attach_process(const char * file, char * const argv[]);
9void init_sighandler(void);