|
#ifndef SCM_THROW_H |
|
#define SCM_THROW_H |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libguile/scm.h" |
|
#include "libguile/exceptions.h" |
|
|
|
|
|
|
|
typedef scm_t_thunk scm_t_catch_body; |
|
typedef SCM (*scm_t_catch_handler) (void *data, |
|
SCM tag, SCM throw_args); |
|
|
|
SCM_INTERNAL SCM scm_i_make_catch_handler (scm_t_catch_handler h, void *data); |
|
|
|
SCM_API SCM scm_c_catch (SCM tag, |
|
scm_t_catch_body body, |
|
void *body_data, |
|
scm_t_catch_handler handler, |
|
void *handler_data, |
|
scm_t_catch_handler pre_unwind_handler, |
|
void *pre_unwind_handler_data); |
|
|
|
SCM_API SCM scm_c_with_throw_handler (SCM tag, |
|
scm_t_catch_body body, |
|
void *body_data, |
|
scm_t_catch_handler handler, |
|
void *handler_data, |
|
int lazy_catch_p); |
|
|
|
SCM_API SCM scm_internal_catch (SCM tag, |
|
scm_t_catch_body body, |
|
void *body_data, |
|
scm_t_catch_handler handler, |
|
void *handler_data); |
|
|
|
|
|
|
|
struct scm_body_thunk_data |
|
{ |
|
|
|
|
|
|
|
SCM tag; |
|
|
|
|
|
|
|
SCM body_proc; |
|
}; |
|
|
|
SCM_API SCM scm_body_thunk (void *); |
|
|
|
|
|
SCM_API SCM scm_handle_by_proc (void *, SCM, SCM); |
|
SCM_API SCM scm_handle_by_proc_catching_all (void *, SCM, SCM); |
|
SCM_API SCM scm_handle_by_message (void *, SCM, SCM); |
|
SCM_API SCM scm_handle_by_message_noexit (void *, SCM, SCM); |
|
SCM_API SCM scm_handle_by_throw (void *, SCM, SCM); |
|
SCM_API int scm_exit_status (SCM args); |
|
|
|
SCM_API SCM scm_catch_with_pre_unwind_handler (SCM tag, SCM thunk, SCM handler, SCM lazy_handler); |
|
SCM_API SCM scm_catch (SCM tag, SCM thunk, SCM handler); |
|
SCM_API SCM scm_with_throw_handler (SCM tag, SCM thunk, SCM handler); |
|
SCM_API SCM scm_ithrow (SCM key, SCM args, int no_return) SCM_NORETURN; |
|
|
|
SCM_API SCM scm_throw (SCM key, SCM args) SCM_NORETURN; |
|
SCM_INTERNAL void scm_init_throw (void); |
|
|
|
#endif |
|
|