00001 #include "local.h" 00002 00003 /****************************************************************************** 00004 ** Dummy signal implementation. ** 00005 ** DDE does not provide its own signal implementation. To make it compile, ** 00006 ** we provide dummy versions of signalling functions here. If later on ** 00007 ** someone *REALLY* wants to use signals in the DDE context, he might ** 00008 ** erase this file and use something like the L4 signalling library for ** 00009 ** such purposes. ** 00010 *******************************************************************************/ 00011 00012 int sigprocmask(int how, sigset_t *set, sigset_t *oldset) 00013 { 00014 return 0; 00015 } 00016 00017 void flush_signals(struct task_struct *t) 00018 { 00019 } 00020 00021 int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact) 00022 { 00023 return 0; 00024 }
1.5.6