]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/dde/linux26/lib/src/arch/l4/signal.c
update
[l4.git] / l4 / pkg / dde / linux26 / lib / src / arch / l4 / signal.c
1 /*
2  * This file is part of DDE/Linux2.6.
3  *
4  * (c) 2006-2012 Bjoern Doebel <doebel@os.inf.tu-dresden.de>
5  *               Christian Helmuth <ch12@os.inf.tu-dresden.de>
6  *     economic rights: Technische Universitaet Dresden (Germany)
7  *
8  * This file is part of TUD:OS and distributed under the terms of the
9  * GNU General Public License 2.
10  * Please see the COPYING-GPL-2 file for details.
11  */
12
13 #include "local.h"
14
15 /******************************************************************************
16  ** Dummy signal implementation.                                             **
17  ** DDE does not provide its own signal implementation. To make it compile,  **
18  ** we provide dummy versions of signalling functions here. If later on      **
19  ** someone *REALLY* wants to use signals in the DDE context, he might       **
20  ** erase this file and use something like the L4 signalling library for     **
21  ** such purposes.                                                           **
22 *******************************************************************************/
23
24 int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
25 {
26         return 0;
27 }
28
29 void flush_signals(struct task_struct *t)
30 {
31 }
32
33 int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
34 {
35         return 0;
36 }