Add TODO item.
[bertos.git] / kern / signal.h
index e52489658dffc5d8788ecb4888f1d4209c6662cc..faca76a0a42c4e5fe7419109492b093887c45c55 100755 (executable)
@@ -3,7 +3,7 @@
  * <!--
  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
  * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
- * This file is part of DevLib - See devlib/README for information.
+ * This file is part of DevLib - See README.devlib for information.
  * -->
  *
  * \brief Signal module (public interface).
 
 /*#*
  *#* $Log$
+ *#* Revision 1.7  2005/11/04 16:20:02  bernie
+ *#* Fix reference to README.devlib in header.
+ *#*
+ *#* 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 */