1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Caml Special Light */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy and Damien Doligez, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1995 Institut National de Recherche en Informatique et */
|
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
#ifndef _signals_
|
|
|
|
#define _signals_
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
|
|
|
|
extern value signal_handlers;
|
|
|
|
extern Volatile int pending_signal;
|
|
|
|
|
|
|
|
void enter_blocking_section P((void));
|
|
|
|
void leave_blocking_section P((void));
|
|
|
|
|
|
|
|
#endif /* _signals_ */
|
|
|
|
|