unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 5f9a0da8d9e4d07b4e6f87310b00415ae4468f81 2232 bytes (raw)
name: src/syssignal.h 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
 
/* syssignal.h - System-dependent definitions for signals.

Copyright (C) 1993, 1999, 2001-2016 Free Software Foundation, Inc.

This file is part of GNU Emacs.

GNU Emacs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.

GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */

#ifndef EMACS_SYSSIGNAL_H
#define EMACS_SYSSIGNAL_H

#include <signal.h>

extern void init_signals (void);
extern void block_child_signal (sigset_t *);
extern void unblock_child_signal (sigset_t const *);
extern void block_tty_out_signal (sigset_t *);
extern void unblock_tty_out_signal (sigset_t const *);

#ifdef HAVE_PTHREAD
#include <pthread.h>
/* If defined, asynchronous signals delivered to a non-main thread are
   forwarded to the main thread.  */
#define FORWARD_SIGNAL_TO_MAIN_THREAD
#endif

/* On Cygwin as of 2015-06-22 SIGEV_SIGNAL is defined as an enum
   constant but not as a macro. */
#if defined CYGWIN && !defined SIGEV_SIGNAL
#define SIGEV_SIGNAL SIGEV_SIGNAL
#endif

#if defined HAVE_TIMER_SETTIME && defined SIGEV_SIGNAL
# define HAVE_ITIMERSPEC
#endif

#if (defined SIGPROF && !defined PROFILING \
     && (defined HAVE_SETITIMER || defined HAVE_ITIMERSPEC))
# define PROFILER_CPU_SUPPORT
#endif

extern sigset_t empty_mask;

typedef void (*signal_handler_t) (int);

extern void emacs_sigaction_init (struct sigaction *, signal_handler_t);
char const *safe_strsignal (int) ATTRIBUTE_CONST;

#if NSIG < NSIG_MINIMUM
# undef NSIG
# define NSIG NSIG_MINIMUM
#endif

#ifndef SA_SIGINFO
# define SA_SIGINFO 0
#endif

#ifndef emacs_raise
# define emacs_raise(sig) raise (sig)
#endif

#ifndef HAVE_STRSIGNAL
# define strsignal(sig) safe_strsignal (sig)
#endif

void deliver_process_signal (int, signal_handler_t);

#endif /* EMACS_SYSSIGNAL_H */

debug log:

solving 5f9a0da ...
found 5f9a0da in https://yhetil.org/emacs-devel/047a67ec-9e29-7e4e-0fb0-24c3e59b5886@dancol.org/
found 3de83c7 in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 3de83c717590a3b66138053812675c2fc830eec7	src/syssignal.h

applying [1/1] https://yhetil.org/emacs-devel/047a67ec-9e29-7e4e-0fb0-24c3e59b5886@dancol.org/
diff --git a/src/syssignal.h b/src/syssignal.h
index 3de83c7..5f9a0da 100644

Checking patch src/syssignal.h...
Applied patch src/syssignal.h cleanly.

index at:
100644 5f9a0da8d9e4d07b4e6f87310b00415ae4468f81	src/syssignal.h

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).