blob: 4f1c280c691a9613a7ae26b8ec4db07e10863022 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#ifndef __SIGNAL_H__
#define __SIGNAL_H__
#include <signal.h>
extern volatile sig_atomic_t global_stop_flag;
int signal_handle_stops(void);
int signal_block_all(sigset_t *old);
int signal_block_stops(void);
int signal_restore(const sigset_t *new);
#endif
|