mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
cd09cd6332
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2133 dbcabf3a-b0e7-0310-adc4-f8d773084564
17 lines
334 B
C
17 lines
334 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);
|
|
|
|
/* return list of pids that are being waited.
|
|
don't free the return value. */
|
|
GSList *pidwait_get_pids(void);
|
|
|
|
#endif
|