irssi/src/core/pidwait.h
2019-05-01 22:22:22 +02:00

16 lines
352 B
C

#ifndef IRSSI_CORE_PIDWAIT_H
#define IRSSI_CORE_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