|
#ifndef SCM_SCMSIGS_H |
|
#define SCM_SCMSIGS_H |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libguile/scm.h" |
|
|
|
|
|
|
|
SCM_API SCM scm_sigaction (SCM signum, SCM handler, SCM flags); |
|
SCM_API SCM scm_sigaction_for_thread (SCM signum, SCM handler, SCM flags, |
|
SCM thread); |
|
SCM_API SCM scm_restore_signals (void); |
|
SCM_API SCM scm_alarm (SCM i); |
|
SCM_API SCM scm_setitimer (SCM which_timer, |
|
SCM interval_seconds, SCM interval_microseconds, |
|
SCM value_seconds, SCM value_microseconds); |
|
SCM_API SCM scm_getitimer (SCM which_timer); |
|
SCM_API SCM scm_pause (void); |
|
SCM_API SCM scm_sleep (SCM i); |
|
SCM_API SCM scm_usleep (SCM i); |
|
SCM_API SCM scm_raise (SCM sig); |
|
SCM_INTERNAL void scm_init_scmsigs (void); |
|
|
|
SCM_INTERNAL void scm_i_close_signal_pipe (void); |
|
SCM_INTERNAL void scm_i_ensure_signal_delivery_thread (void); |
|
SCM_INTERNAL void scm_i_signals_pre_fork (void); |
|
SCM_INTERNAL void scm_i_signals_post_fork (void); |
|
|
|
struct scm_thread; |
|
SCM_INTERNAL int scm_i_is_signal_delivery_thread (struct scm_thread *t); |
|
|
|
#endif |
|
|