mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
13 lines
220 B
C
13 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
|