Sort function prototypes (since I didn't manage to insert tdksignal()
correctly).
This commit is contained in:
parent
7a6f3d7890
commit
fab216aaa0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209596
@ -330,12 +330,15 @@ int cursig(struct thread *td, int stop_allowed);
|
||||
void execsigs(struct proc *p);
|
||||
void gsignal(int pgid, int sig, ksiginfo_t *ksi);
|
||||
void killproc(struct proc *p, char *why);
|
||||
ksiginfo_t * ksiginfo_alloc(int);
|
||||
void ksiginfo_free(ksiginfo_t *);
|
||||
int pksignal(struct proc *p, int sig, ksiginfo_t *ksi);
|
||||
void pgsigio(struct sigio **, int signum, int checkctty);
|
||||
void pgsignal(struct pgrp *pgrp, int sig, int checkctty, ksiginfo_t *ksi);
|
||||
int postsig(int sig);
|
||||
void psignal(struct proc *p, int sig);
|
||||
int psignal_event(struct proc *p, struct sigevent *, ksiginfo_t *);
|
||||
int ptracestop(struct thread *td, int sig);
|
||||
struct sigacts *sigacts_alloc(void);
|
||||
void sigacts_copy(struct sigacts *dest, struct sigacts *src);
|
||||
void sigacts_free(struct sigacts *ps);
|
||||
@ -345,18 +348,15 @@ void sigexit(struct thread *td, int signum) __dead2;
|
||||
int sig_ffs(sigset_t *set);
|
||||
void siginit(struct proc *p);
|
||||
void signotify(struct thread *td);
|
||||
void sigqueue_delete(struct sigqueue *queue, int sig);
|
||||
void sigqueue_delete_proc(struct proc *p, int sig);
|
||||
void sigqueue_flush(struct sigqueue *queue);
|
||||
void sigqueue_init(struct sigqueue *queue, struct proc *p);
|
||||
void sigqueue_take(ksiginfo_t *ksi);
|
||||
void tdksignal(struct thread *td, int sig, ksiginfo_t *ksi);
|
||||
void tdsigcleanup(struct thread *td);
|
||||
void tdsignal(struct thread *td, int sig);
|
||||
void tdksignal(struct thread *td, int sig, ksiginfo_t *ksi);
|
||||
void trapsignal(struct thread *td, ksiginfo_t *);
|
||||
int ptracestop(struct thread *td, int sig);
|
||||
ksiginfo_t * ksiginfo_alloc(int);
|
||||
void ksiginfo_free(ksiginfo_t *);
|
||||
void sigqueue_init(struct sigqueue *queue, struct proc *p);
|
||||
void sigqueue_flush(struct sigqueue *queue);
|
||||
void sigqueue_delete_proc(struct proc *p, int sig);
|
||||
void sigqueue_delete(struct sigqueue *queue, int sig);
|
||||
void sigqueue_take(ksiginfo_t *ksi);
|
||||
int kern_sigtimedwait(struct thread *, sigset_t,
|
||||
ksiginfo_t *, struct timespec *);
|
||||
int kern_sigprocmask(struct thread *td, int how,
|
||||
|
Loading…
Reference in New Issue
Block a user