f99caf42f3
In previous versions, when a SIGINT was received, the program would exit if there were no child processes, now the behavior is changed to not exit and start a new line.
12 lines
No EOL
235 B
C
12 lines
No EOL
235 B
C
/*
|
|
* @Author: 1ridic
|
|
* @Date: 2022-09-18 14:14:19
|
|
* @Last Modified by: 1ridic
|
|
* @Last Modified time: 2022-09-20 22:24:24
|
|
*/
|
|
#ifndef _LOOP_H_
|
|
#define _LOOP_H_
|
|
#include "config.h"
|
|
void SIGINT_Handler(int dummy);
|
|
int loop();
|
|
#endif |