Skip to content

Commit

Permalink
Merge branch 'signals-review' into ptrace
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Nesterov committed May 18, 2011
2 parents 19e2746 + b2b07e4 commit bd715d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/linux/signal.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ static inline int valid_signal(unsigned long sig)
return sig <= _NSIG ? 1 : 0;
}

struct timespec;
struct pt_regs;

extern int next_signal(struct sigpending *pending, sigset_t *mask);
extern int do_send_sig_info(int sig, struct siginfo *info,
struct task_struct *p, bool group);
Expand All @@ -248,7 +251,6 @@ extern int sigprocmask(int, sigset_t *, sigset_t *);
extern void set_current_blocked(const sigset_t *);
extern int show_unhandled_signals;

struct pt_regs;
extern int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka, struct pt_regs *regs, void *cookie);
extern void exit_signals(struct task_struct *tsk);

Expand Down

0 comments on commit bd715d9

Please sign in to comment.