Files
haiku-beta6/headers/private/kernel/ksignal.h
T
Ingo Weinhold 383cdedbd2 Several follow-up changes required by the changes either to the VFS
syscalls or to the syscall mechanism (which exposed naming and parameter
inconsistencies).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8703 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-08-28 20:45:00 +00:00

20 lines
582 B
C

/*
** Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef _KERNEL_SIGNAL_H
#define _KERNEL_SIGNAL_H
#include <signal.h>
#define BLOCKABLE_SIGS (~((1L << (SIGKILL - 1)) | (1L << (SIGSTOP - 1))))
extern int handle_signals(struct thread *t, int state);
extern int _user_send_signal(pid_t tid, uint sig);
extern int _user_sigaction(int sig, const struct sigaction *act, struct sigaction *oact);
extern bigtime_t _user_set_alarm(bigtime_t time, uint32 mode);
#endif /* _KERNEL_SIGNAL_H */