mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
16 lines
352 B
C
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
|