[BACK]Return to signalvar.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / sys

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/sys/signalvar.h between version 1.73.8.1 and 1.73.8.2

version 1.73.8.1, 2008/03/29 20:47:03 version 1.73.8.2, 2008/11/20 20:45:39
Line 127  struct vnode;
Line 127  struct vnode;
 /*  /*
  * Machine-independent functions:   * Machine-independent functions:
  */   */
 int     coredump(struct lwp *, const char *);  
 int     coredump_netbsd(struct lwp *, void *);  int     coredump_netbsd(struct lwp *, void *);
 void    execsigs(struct proc *);  void    execsigs(struct proc *);
 void    gsignal(int, int);  void    gsignal(int, int);
Line 170  void sigactsfree(struct sigacts *);
Line 169  void sigactsfree(struct sigacts *);
   
 void    kpsendsig(struct lwp *, const struct ksiginfo *, const sigset_t *);  void    kpsendsig(struct lwp *, const struct ksiginfo *, const sigset_t *);
 void    sendsig_reset(struct lwp *, int);  void    sendsig_reset(struct lwp *, int);
   void    sendsig(const struct ksiginfo *, const sigset_t *);
   
 siginfo_t *siginfo_alloc(int);  siginfo_t *siginfo_alloc(int);
 void    siginfo_free(void *);  void    siginfo_free(void *);
Line 188  int sigispending(struct lwp *, int);
Line 188  int sigispending(struct lwp *, int);
 /*  /*
  * Machine-dependent functions:   * Machine-dependent functions:
  */   */
 void    sendsig(const struct ksiginfo *, const sigset_t *);  void    sendsig_sigcontext(const struct ksiginfo *, const sigset_t *);
   void    sendsig_siginfo(const struct ksiginfo *, const sigset_t *);
   
 extern  struct pool ksiginfo_pool;  extern  struct pool ksiginfo_pool;
   
 /*  /*
    * Modularity / compatibility.
    */
   extern void     (*sendsig_sigcontext_vec)(const struct ksiginfo *,
                                             const sigset_t *);
   extern int      (*coredump_vec)(struct lwp *, const char *);
   
   /*
  * firstsig:   * firstsig:
  *   *
  *      Return the first signal in a signal set.   *      Return the first signal in a signal set.

Legend:
Removed from v.1.73.8.1  
changed lines
  Added in v.1.73.8.2

CVSweb <webmaster@jp.NetBSD.org>