Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: sigthread.h
/* Signal handling function for threaded programs.
[0] Fix | Delete
Copyright (C) 1998-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public License as
[5] Fix | Delete
published by the Free Software Foundation; either version 2.1 of the
[6] Fix | Delete
License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; see the file COPYING.LIB. If
[15] Fix | Delete
not, see <http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _BITS_SIGTHREAD_H
[18] Fix | Delete
#define _BITS_SIGTHREAD_H 1
[19] Fix | Delete
[20] Fix | Delete
#if !defined _SIGNAL_H && !defined _PTHREAD_H
[21] Fix | Delete
# error "Never include this file directly. Use <signal.h> instead"
[22] Fix | Delete
#endif
[23] Fix | Delete
[24] Fix | Delete
/* Functions for handling signals. */
[25] Fix | Delete
#include <bits/types/__sigset_t.h>
[26] Fix | Delete
[27] Fix | Delete
/* Modify the signal mask for the calling thread. The arguments have
[28] Fix | Delete
the same meaning as for sigprocmask(2). */
[29] Fix | Delete
extern int pthread_sigmask (int __how,
[30] Fix | Delete
const __sigset_t *__restrict __newmask,
[31] Fix | Delete
__sigset_t *__restrict __oldmask)__THROW;
[32] Fix | Delete
[33] Fix | Delete
/* Send signal SIGNO to the given thread. */
[34] Fix | Delete
extern int pthread_kill (pthread_t __threadid, int __signo) __THROW;
[35] Fix | Delete
[36] Fix | Delete
#ifdef __USE_GNU
[37] Fix | Delete
/* Queue signal and data to a thread. */
[38] Fix | Delete
extern int pthread_sigqueue (pthread_t __threadid, int __signo,
[39] Fix | Delete
const union sigval __value) __THROW;
[40] Fix | Delete
#endif
[41] Fix | Delete
[42] Fix | Delete
#endif /* bits/sigthread.h */
[43] Fix | Delete
[44] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function