mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
c95034c6de
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
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
|