blob: 468b5f520b23d8daccdb4fb7726e778dfd803d50 (
plain) (
tree)
|
|
/*
* Copyright (c) 2022 Egor Tensin <egor@tensin.name>
* 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>
int signal_set_mask(const sigset_t *new);
int signal_block_all(sigset_t *old);
int signal_block_sigterms(void);
int signalfd_create(const sigset_t *);
int signalfd_create_sigterms(void);
void signalfd_destroy(int fd);
#endif
|