summaryrefslogtreecommitdiff
path: root/libdde_linux26/lib/src/arch/l4/signal.c
blob: bd0bc0a771d07f6ae2c6243746b553911d35aee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "local.h"

/******************************************************************************
 ** Dummy signal implementation.                                             **
 ** DDE does not provide its own signal implementation. To make it compile,  **
 ** we provide dummy versions of signalling functions here. If later on      **
 ** someone *REALLY* wants to use signals in the DDE context, he might       **
 ** erase this file and use something like the L4 signalling library for     **
 ** such purposes.                                                           **
*******************************************************************************/

int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
{
	return 0;
}

void flush_signals(struct task_struct *t)
{
}

int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
{
	return 0;
}