Back
Type Name Operations
abstract.h
bytearrayobject.h
bytesobject.h
cellobject.h
ceval.h
classobject.h
code.h
compile.h
complexobject.h
context.h
critical_section.h
descrobject.h
dictobject.h
fileobject.h
fileutils.h
floatobject.h
frameobject.h
funcobject.h
genobject.h
import.h
initconfig.h
listobject.h
lock.h
longintrepr.h
longobject.h
memoryobject.h
methodobject.h
modsupport.h
monitoring.h
object.h
objimpl.h
odictobject.h
picklebufobject.h
pthread_stubs.h
pyatomic.h
pyatomic_gcc.h
pyatomic_msc.h
pyatomic_std.h
pyctype.h
pydebug.h
pyerrors.h
pyfpe.h
pyframe.h
pyhash.h
pylifecycle.h
pymem.h
pystate.h
pystats.h
pythonrun.h
pythread.h
pytime.h
setobject.h
sysmodule.h
traceback.h
tracemalloc.h
tupleobject.h
unicodeobject.h
warnings.h
weakrefobject.h

File Transfer

Upload files to current directory

File Editor: sysmodule.h

#ifndef Py_CPYTHON_SYSMODULE_H # error "this header file must not be included directly" #endif typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *); PyAPI_FUNC(int) PySys_AddAuditHook(Py_AuditHookFunction, void*); typedef struct { FILE* perf_map; PyThread_type_lock map_lock; } PerfMapState; PyAPI_FUNC(int) PyUnstable_PerfMapState_Init(void); PyAPI_FUNC(int) PyUnstable_WritePerfMapEntry( const void *code_addr, unsigned int code_size, const char *entry_name); PyAPI_FUNC(void) PyUnstable_PerfMapState_Fini(void); PyAPI_FUNC(int) PyUnstable_CopyPerfMapFile(const char* parent_filename); PyAPI_FUNC(int) PyUnstable_PerfTrampoline_CompileCode(PyCodeObject *); PyAPI_FUNC(int) PyUnstable_PerfTrampoline_SetPersistAfterFork(int enable);