host_to_net(16|32)(), net_to_host(16|32)(): New functions.
[bertos.git] / kern / signal.h
index e52489658dffc5d8788ecb4888f1d4209c6662cc..167c9de1e9dc05062ac94a2b7ac41bcd3fcdb1d0 100755 (executable)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.6  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
+ *#* Revision 1.5  2004/12/08 08:57:35  bernie
+ *#* Rename sigset_t to sigmask_t.
+ *#*
  *#* Revision 1.4  2004/08/25 14:12:09  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
 #ifndef KERN_SIGNAL_H
 #define KERN_SIGNAL_H
 
-#include "compiler.h"
+#include <cfg/compiler.h>
 
 
 /* Fwd decl */
 struct Process;
 
 /* Inter-process Communication services */
-sigset_t sig_check(sigset_t sigs);
-void sig_signal(struct Process *proc, sigset_t sig);
-sigset_t sig_wait(sigset_t sigs);
+sigmask_t sig_check(sigmask_t sigs);
+void sig_signal(struct Process *proc, sigmask_t sig);
+sigmask_t sig_wait(sigmask_t sigs);
 
 
 /*!
  * \name Signal definitions
- *
  * \{
  */
 #define SIG_USER0    BV(0)  /*!< Free for user usage */