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.
24 lines
428 B
24 lines
428 B
/*************
|
|
* Header file for signal_handler.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_SIGNAL_HANDLER_H
|
|
#define ngspice_SIGNAL_HANDLER_H
|
|
|
|
void ft_sigintr(void);
|
|
void sigfloat(int code);
|
|
void sigttio(void);
|
|
void sigstop(void);
|
|
void sigcont(void);
|
|
void sigill(void);
|
|
void sigbus(void);
|
|
void sigsegv(void);
|
|
void sigsegvsh(void);
|
|
void sig_sys(void);
|
|
|
|
extern JMP_BUF jbuf;
|
|
|
|
extern void ft_sigintr_cleanup(void);
|
|
|
|
#endif
|