Current Path: > > opt > > alt > python310 > include > python3.10 > > internal
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
pycore_abstract.h | File | 479 bytes | June 03 2025 18:23:41. | |
pycore_accu.h | File | 1126 bytes | June 03 2025 18:23:41. | |
pycore_asdl.h | File | 2971 bytes | June 03 2025 18:23:41. | |
pycore_ast.h | File | 28828 bytes | June 03 2025 18:23:41. | |
pycore_ast_state.h | File | 6457 bytes | June 03 2025 18:23:41. | |
pycore_atomic.h | File | 16979 bytes | June 03 2025 18:23:41. | |
pycore_atomic_funcs.h | File | 2438 bytes | June 03 2025 18:23:41. | |
pycore_bitutils.h | File | 5271 bytes | June 03 2025 18:23:41. | |
pycore_blocks_output_buffer.h | File | 8688 bytes | June 03 2025 18:23:41. | |
pycore_bytes_methods.h | File | 3384 bytes | June 03 2025 18:23:41. | |
pycore_call.h | File | 870 bytes | June 03 2025 18:23:41. | |
pycore_ceval.h | File | 3484 bytes | June 03 2025 18:23:41. | |
pycore_code.h | File | 696 bytes | June 03 2025 18:23:41. | |
pycore_compile.h | File | 1045 bytes | June 03 2025 18:23:41. | |
pycore_condvar.h | File | 2809 bytes | June 03 2025 18:23:41. | |
pycore_context.h | File | 822 bytes | June 03 2025 18:23:41. | |
pycore_dtoa.h | File | 646 bytes | June 03 2025 18:23:41. | |
pycore_fileutils.h | File | 1704 bytes | June 03 2025 18:23:41. | |
pycore_format.h | File | 480 bytes | June 03 2025 18:23:41. | |
pycore_gc.h | File | 6859 bytes | June 03 2025 18:23:41. | |
pycore_getopt.h | File | 490 bytes | June 03 2025 18:23:41. | |
pycore_gil.h | File | 1565 bytes | June 03 2025 18:23:41. | |
pycore_hamt.h | File | 3697 bytes | June 03 2025 18:23:41. | |
pycore_hashtable.h | File | 4197 bytes | June 03 2025 18:23:41. | |
pycore_import.h | File | 346 bytes | June 03 2025 18:23:41. | |
pycore_initconfig.h | File | 5625 bytes | June 03 2025 18:23:41. | |
pycore_interp.h | File | 9289 bytes | June 03 2025 18:23:41. | |
pycore_list.h | File | 350 bytes | June 03 2025 18:23:41. | |
pycore_long.h | File | 2589 bytes | June 03 2025 18:23:41. | |
pycore_moduleobject.h | File | 1047 bytes | June 03 2025 18:23:41. | |
pycore_object.h | File | 5989 bytes | June 03 2025 18:23:41. | |
pycore_parser.h | File | 626 bytes | June 03 2025 18:23:41. | |
pycore_pathconfig.h | File | 1981 bytes | June 03 2025 18:23:41. | |
pycore_pyarena.h | File | 2733 bytes | June 03 2025 18:23:41. | |
pycore_pyerrors.h | File | 2314 bytes | June 03 2025 18:23:41. | |
pycore_pyhash.h | File | 206 bytes | June 03 2025 18:23:41. | |
pycore_pylifecycle.h | File | 4940 bytes | June 03 2025 18:23:41. | |
pycore_pymem.h | File | 3211 bytes | June 03 2025 18:23:41. | |
pycore_pystate.h | File | 3938 bytes | June 03 2025 18:23:41. | |
pycore_runtime.h | File | 4902 bytes | June 03 2025 18:23:41. | |
pycore_structseq.h | File | 386 bytes | June 03 2025 18:23:41. | |
pycore_symtable.h | File | 5578 bytes | June 03 2025 18:23:41. | |
pycore_sysmodule.h | File | 548 bytes | June 03 2025 18:23:41. | |
pycore_traceback.h | File | 2970 bytes | June 03 2025 18:23:41. | |
pycore_tuple.h | File | 425 bytes | June 03 2025 18:23:41. | |
pycore_ucnhash.h | File | 898 bytes | June 03 2025 18:23:41. | |
pycore_unionobject.h | File | 629 bytes | June 03 2025 18:23:41. | |
pycore_warnings.h | File | 633 bytes | June 03 2025 18:23:41. |
/* An arena-like memory interface for the compiler. */ #ifndef Py_INTERNAL_PYARENA_H #define Py_INTERNAL_PYARENA_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif typedef struct _arena PyArena; /* _PyArena_New() and _PyArena_Free() create a new arena and free it, respectively. Once an arena has been created, it can be used to allocate memory via _PyArena_Malloc(). Pointers to PyObject can also be registered with the arena via _PyArena_AddPyObject(), and the arena will ensure that the PyObjects stay alive at least until _PyArena_Free() is called. When an arena is freed, all the memory it allocated is freed, the arena releases internal references to registered PyObject*, and none of its pointers are valid. XXX (tim) What does "none of its pointers are valid" mean? Does it XXX mean that pointers previously obtained via _PyArena_Malloc() are XXX no longer valid? (That's clearly true, but not sure that's what XXX the text is trying to say.) _PyArena_New() returns an arena pointer. On error, it returns a negative number and sets an exception. XXX (tim): Not true. On error, _PyArena_New() actually returns NULL, XXX and looks like it may or may not set an exception (e.g., if the XXX internal PyList_New(0) returns NULL, _PyArena_New() passes that on XXX and an exception is set; OTOH, if the internal XXX block_new(DEFAULT_BLOCK_SIZE) returns NULL, that's passed on but XXX an exception is not set in that case). */ PyAPI_FUNC(PyArena*) _PyArena_New(void); PyAPI_FUNC(void) _PyArena_Free(PyArena *); /* Mostly like malloc(), return the address of a block of memory spanning * `size` bytes, or return NULL (without setting an exception) if enough * new memory can't be obtained. Unlike malloc(0), _PyArena_Malloc() with * size=0 does not guarantee to return a unique pointer (the pointer * returned may equal one or more other pointers obtained from * _PyArena_Malloc()). * Note that pointers obtained via _PyArena_Malloc() must never be passed to * the system free() or realloc(), or to any of Python's similar memory- * management functions. _PyArena_Malloc()-obtained pointers remain valid * until _PyArena_Free(ar) is called, at which point all pointers obtained * from the arena `ar` become invalid simultaneously. */ PyAPI_FUNC(void*) _PyArena_Malloc(PyArena *, size_t size); /* This routine isn't a proper arena allocation routine. It takes * a PyObject* and records it so that it can be DECREFed when the * arena is freed. */ PyAPI_FUNC(int) _PyArena_AddPyObject(PyArena *, PyObject *); #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_PYARENA_H */
SILENT KILLER Tool