mirror of
https://github.com/irssi/irssi.git
synced 2026-08-13 21:52:17 +02:00
12 lines
220 B
C
12 lines
220 B
C
|
|
#ifndef __PIDWAIT_H
|
||
|
|
#define __PIDWAIT_H
|
||
|
|
|
||
|
|
void pidwait_init(void);
|
||
|
|
void pidwait_deinit(void);
|
||
|
|
|
||
|
|
/* add a pid to wait list */
|
||
|
|
void pidwait_add(int pid);
|
||
|
|
/* remove pid from wait list */
|
||
|
|
void pidwait_remove(int pid);
|
||
|
|
|
||
|
|
#endif
|