[BACK]Return to signal.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/signal.h between version 1.15 and 1.16

version 1.15, 2011/07/06 17:39:22 version 1.16, 2011/11/22 21:13:30
Line 105 
Line 105 
 int     killpg(pid_t, int);  int     killpg(pid_t, int);
 int     siginterrupt(int, int);  int     siginterrupt(int, int);
 int     sigpause(int);  int     sigpause(int);
 int     sigreturn(struct sigcontext *);  
 int     sigstack(const struct sigstack *, struct sigstack *);  
 int     sigaltstack(const struct sigaltstack *, struct sigaltstack *);  int     sigaltstack(const struct sigaltstack *, struct sigaltstack *);
 #if __BSD_VISIBLE  #if __BSD_VISIBLE
 void    psignal(unsigned int, const char *);  
 int     sigblock(int);  int     sigblock(int);
   int     sigreturn(struct sigcontext *);
 int     sigsetmask(int);  int     sigsetmask(int);
 int     sigvec(int, struct sigvec *, struct sigvec *);  int     sigvec(int, struct sigvec *, struct sigvec *);
 #endif  #endif
   #endif /* __BSD_VISIBLE || __XPG_VISIBLE >= 420 */
 #if __BSD_VISIBLE ||  __POSIX_VISIBLE >= 199309 || __XPG_VISIBLE >= 500  #if __BSD_VISIBLE ||  __POSIX_VISIBLE >= 199309 || __XPG_VISIBLE >= 500
 int     sigwait(const sigset_t *, int *);  int     sigwait(const sigset_t *, int *);
 #endif  #endif
 #endif /* __BSD_VISIBLE || __XPG_VISIBLE >= 420 */  #if __BSD_VISIBLE ||  __POSIX_VISIBLE >= 200809
   void    psignal(unsigned int, const char *);
   #endif
 #endif /* __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE */  #endif /* __BSD_VISIBLE || __POSIX_VISIBLE || __XPG_VISIBLE */
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16