You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
404 B
20 lines
404 B
/*************
|
|
* Header file for signal_handler.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_SIGNAL_HANDLER_H
|
|
#define ngspice_SIGNAL_HANDLER_H
|
|
|
|
RETSIGTYPE ft_sigintr(void);
|
|
RETSIGTYPE sigfloat(int sig, int code);
|
|
RETSIGTYPE sigstop(void);
|
|
RETSIGTYPE sigcont(void);
|
|
RETSIGTYPE sigill(void);
|
|
RETSIGTYPE sigbus(void);
|
|
RETSIGTYPE sigsegv(void);
|
|
RETSIGTYPE sig_sys(void);
|
|
|
|
extern JMP_BUF jbuf;
|
|
|
|
#endif
|