00001 #ifndef _PCSYNC_SIG_H 00002 #define _PCSYNC_SIG_H 00003 00004 struct pcsync { 00005 sigset_t old_set; 00006 }; 00007 00008 bool pcsync_init(struct pcsync *p); 00009 bool pcsync_wait_for_parent(struct pcsync *p); 00010 bool pcsync_unblock_children(struct pcsync *p, int children, 00011 pid_t *pid_child); 00012 bool pcsync_end(struct pcsync *p); 00013 00014 #endif /* _PCSYNC_SIG_H */