IRQ_RESTORE(flags);
}
-/**
- * Send the signals \a sigs to the process \a proc and immeditaly dispatch it
- * for execution.
- *
- * The process will be awoken if it was waiting for any of them and immediately
- * dispatched for execution.
- *
- * \note This function can't be called from IRQ context, use sig_post()
- * instead.
- */
void sig_sendSignal(Signal *s, Process *proc, sigmask_t sigs)
{
ASSERT_USER_CONTEXT();
__sig_signal(s, proc, sigs, true);
}
-/**
- * Send the signals \a sigs to the process \a proc.
- * The process will be awoken if it was waiting for any of them.
- *
- * \note This call is interrupt safe.
- */
void sig_postSignal(Signal *s, Process *proc, sigmask_t sigs)
{
__sig_signal(s, proc, sigs, false);
return result;
}
+/**
+ * Check if any of the signals in \a sigs has occurred and clear them.
+ *
+ * \return the signals that have occurred.
+ */
INLINE sigmask_t sig_check(sigmask_t sigs)
{
Process *proc = proc_current();
void sig_sendSignal(Signal *s, Process *proc, sigmask_t sig);
+/**
+ * Send the signals \a sigs to the process \a proc and immeditaly dispatch it
+ * for execution.
+ *
+ * The process will be awoken if it was waiting for any of them and immediately
+ * dispatched for execution.
+ *
+ * \note This function can't be called from IRQ context, use sig_post()
+ * instead.
+ */
INLINE void sig_send(Process *proc, sigmask_t sig)
{
sig_sendSignal(&proc->sig, proc, sig);
void sig_postSignal(Signal *s, Process *proc, sigmask_t sig);
+/**
+ * Send the signals \a sigs to the process \a proc.
+ * The process will be awoken if it was waiting for any of them.
+ *
+ * \note This call is interrupt safe.
+ */
INLINE void sig_post(Process *proc, sigmask_t sig)
{
sig_postSignal(&proc->sig, proc, sig);
sigmask_t sig_waitSignal(Signal *s, sigmask_t sigs);
+/**
+ * Sleep until any of the signals in \a sigs occurs.
+ *
+ * \return the signal(s) that have awoken the process.
+ */
INLINE sigmask_t sig_wait(sigmask_t sigs)
{
Process *proc = proc_current();