Skip to content
Snippets Groups Projects
Commit 026e7f18 authored by wlott's avatar wlott
Browse files

Added declarations for routines that are now exported.

parent bc22f1aa
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.h,v 1.1 1990/03/29 21:23:00 ch Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.h,v 1.2 1991/05/24 17:50:52 wlott Exp $ */
#if !defined(_INCLUDE_INTERRUPT_H_)
#define _INCLUDE_INTERRUPT_H_
......@@ -11,9 +11,12 @@ extern struct sigcontext *lisp_interrupt_contexts[MAX_INTERRUPTS];
union interrupt_handler {
lispobj lisp;
int (*c)();
void (*c)();
};
extern void interrupt_handle_now(), interrupt_handle_pending();
extern void interrupt_internal_error();
extern union interrupt_handler interrupt_handlers[NSIG];
#define BLOCKABLE (sigmask(SIGHUP) | sigmask(SIGINT) | \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment