PATH:
opt
/
alt
/
python311
/
include
/
python3.11
/
internal
// Define Py_NSIG constant for signal handling. #ifndef Py_INTERNAL_SIGNAL_H #define Py_INTERNAL_SIGNAL_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include <signal.h> // NSIG #ifdef _SIG_MAXSIG // gh-91145: On FreeBSD, <signal.h> defines NSIG as 32: it doesn't include // realtime signals: [SIGRTMIN,SIGRTMAX]. Use _SIG_MAXSIG instead. For // example on x86-64 FreeBSD 13, SIGRTMAX is 126 and _SIG_MAXSIG is 128. # define Py_NSIG _SIG_MAXSIG #elif defined(NSIG) # define Py_NSIG NSIG #elif defined(_NSIG) # define Py_NSIG _NSIG // BSD/SysV #elif defined(_SIGMAX) # define Py_NSIG (_SIGMAX + 1) // QNX #elif defined(SIGMAX) # define Py_NSIG (SIGMAX + 1) // djgpp #else # define Py_NSIG 64 // Use a reasonable default value #endif #ifdef __cplusplus } #endif #endif // !Py_INTERNAL_SIGNAL_H
[+]
..
[-] pycore_runtime.h
[edit]
[-] pycore_call.h
[edit]
[-] pycore_symtable.h
[edit]
[-] pycore_bytes_methods.h
[edit]
[-] pycore_floatobject.h
[edit]
[-] pycore_pystate.h
[edit]
[-] pycore_pymath.h
[edit]
[-] pycore_unionobject.h
[edit]
[-] pycore_ast_state.h
[edit]
[-] pycore_tuple.h
[edit]
[-] pycore_emscripten_signal.h
[edit]
[-] pycore_sysmodule.h
[edit]
[-] pycore_frame.h
[edit]
[-] pycore_hashtable.h
[edit]
[-] pycore_strhex.h
[edit]
[-] pycore_interp.h
[edit]
[-] pycore_dict.h
[edit]
[-] pycore_runtime_init.h
[edit]
[-] pycore_gil.h
[edit]
[-] pycore_global_strings.h
[edit]
[-] pycore_interpreteridobject.h
[edit]
[-] pycore_atomic.h
[edit]
[-] pycore_initconfig.h
[edit]
[-] pycore_context.h
[edit]
[-] pycore_pymem.h
[edit]
[-] pycore_compile.h
[edit]
[-] pycore_parser.h
[edit]
[-] pycore_function.h
[edit]
[-] pycore_getopt.h
[edit]
[-] pycore_global_objects.h
[edit]
[-] pycore_typeobject.h
[edit]
[-] pycore_gc.h
[edit]
[-] pycore_pyarena.h
[edit]
[-] pycore_bytesobject.h
[edit]
[-] pycore_dtoa.h
[edit]
[-] pycore_pathconfig.h
[edit]
[-] pycore_format.h
[edit]
[-] pycore_structseq.h
[edit]
[-] pycore_object.h
[edit]
[-] pycore_import.h
[edit]
[-] pycore_pyhash.h
[edit]
[-] pycore_fileutils.h
[edit]
[-] pycore_code.h
[edit]
[-] pycore_pyerrors.h
[edit]
[-] pycore_list.h
[edit]
[-] pycore_unicodeobject.h
[edit]
[-] pycore_sliceobject.h
[edit]
[-] pycore_namespace.h
[edit]
[-] pycore_warnings.h
[edit]
[-] pycore_bitutils.h
[edit]
[-] pycore_asdl.h
[edit]
[-] pycore_abstract.h
[edit]
[-] pycore_blocks_output_buffer.h
[edit]
[-] pycore_exceptions.h
[edit]
[-] pycore_traceback.h
[edit]
[-] pycore_opcode.h
[edit]
[-] pycore_ucnhash.h
[edit]
[-] pycore_moduleobject.h
[edit]
[-] pycore_pylifecycle.h
[edit]
[-] pycore_atomic_funcs.h
[edit]
[-] pycore_ceval.h
[edit]
[-] pycore_accu.h
[edit]
[-] pycore_signal.h
[edit]
[-] pycore_condvar.h
[edit]
[-] pycore_hamt.h
[edit]
[-] pycore_long.h
[edit]
[-] pycore_ast.h
[edit]
[-] pycore_genobject.h
[edit]