GRAYBYTE WORDPRESS FILE MANAGER9951

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.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
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/alt/python312/include/python3.12/internal/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/alt/python312/include/python3.12/internal//pycore_interp.h
#ifndef Py_INTERNAL_INTERP_H
#define Py_INTERNAL_INTERP_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_BUILD_CORE
#  error "this header requires Py_BUILD_CORE define"
#endif

#include <stdbool.h>

#include "pycore_ast_state.h"     // struct ast_state
#include "pycore_atexit.h"        // struct atexit_state
#include "pycore_atomic.h"        // _Py_atomic_address
#include "pycore_ceval_state.h"   // struct _ceval_state
#include "pycore_code.h"          // struct callable_cache
#include "pycore_context.h"       // struct _Py_context_state
#include "pycore_dict_state.h"    // struct _Py_dict_state
#include "pycore_dtoa.h"          // struct _dtoa_state
#include "pycore_exceptions.h"    // struct _Py_exc_state
#include "pycore_floatobject.h"   // struct _Py_float_state
#include "pycore_function.h"      // FUNC_MAX_WATCHERS
#include "pycore_genobject.h"     // struct _Py_async_gen_state
#include "pycore_gc.h"            // struct _gc_runtime_state
#include "pycore_global_objects.h"  // struct _Py_interp_static_objects
#include "pycore_import.h"        // struct _import_state
#include "pycore_instruments.h"   // _PY_MONITORING_EVENTS
#include "pycore_list.h"          // struct _Py_list_state
#include "pycore_object_state.h"   // struct _py_object_state
#include "pycore_obmalloc.h"      // struct obmalloc_state
#include "pycore_tuple.h"         // struct _Py_tuple_state
#include "pycore_typeobject.h"    // struct type_cache
#include "pycore_unicodeobject.h" // struct _Py_unicode_state
#include "pycore_warnings.h"      // struct _warnings_runtime_state


struct _Py_long_state {
    int max_str_digits;
};


/* cross-interpreter data registry */

/* For now we use a global registry of shareable classes.  An
   alternative would be to add a tp_* slot for a class's
   crossinterpdatafunc. It would be simpler and more efficient. */

struct _xidregitem;

struct _xidregitem {
    struct _xidregitem *prev;
    struct _xidregitem *next;
    /* This can be a dangling pointer, but only if weakref is set. */
    PyTypeObject *cls;
    /* This is NULL for builtin types. */
    PyObject *weakref;
    size_t refcount;
    crossinterpdatafunc getdata;
};

struct _xidregistry {
    PyThread_type_lock mutex;
    struct _xidregitem *head;
};


/* interpreter state */

/* PyInterpreterState holds the global state for one of the runtime's
   interpreters.  Typically the initial (main) interpreter is the only one.

   The PyInterpreterState typedef is in Include/pytypedefs.h.
   */
struct _is {

    PyInterpreterState *next;

    int64_t id;
    int64_t id_refcount;
    int requires_idref;
    PyThread_type_lock id_mutex;

    /* Has been initialized to a safe state.

       In order to be effective, this must be set to 0 during or right
       after allocation. */
    int _initialized;
    int finalizing;

    uint64_t monitoring_version;
    uint64_t last_restart_version;
    struct pythreads {
        uint64_t next_unique_id;
        /* The linked list of threads, newest first. */
        PyThreadState *head;
        /* Used in Modules/_threadmodule.c. */
        long count;
        /* Support for runtime thread stack size tuning.
           A value of 0 means using the platform's default stack size
           or the size specified by the THREAD_STACK_SIZE macro. */
        /* Used in Python/thread.c. */
        size_t stacksize;
    } threads;

    /* Reference to the _PyRuntime global variable. This field exists
       to not have to pass runtime in addition to tstate to a function.
       Get runtime from tstate: tstate->interp->runtime. */
    struct pyruntimestate *runtime;

    /* Set by Py_EndInterpreter().

       Use _PyInterpreterState_GetFinalizing()
       and _PyInterpreterState_SetFinalizing()
       to access it, don't access it directly. */
    _Py_atomic_address _finalizing;

    struct _gc_runtime_state gc;

    /* The following fields are here to avoid allocation during init.
       The data is exposed through PyInterpreterState pointer fields.
       These fields should not be accessed directly outside of init.

       All other PyInterpreterState pointer fields are populated when
       needed and default to NULL.

       For now there are some exceptions to that rule, which require
       allocation during init.  These will be addressed on a case-by-case
       basis.  Also see _PyRuntimeState regarding the various mutex fields.
       */

    // Dictionary of the sys module
    PyObject *sysdict;

    // Dictionary of the builtins module
    PyObject *builtins;

    struct _ceval_state ceval;

    struct _import_state imports;

    /* The per-interpreter GIL, which might not be used. */
    struct _gil_runtime_state _gil;

     /* ---------- IMPORTANT ---------------------------
     The fields above this line are declared as early as
     possible to facilitate out-of-process observability
     tools. */

    PyObject *codec_search_path;
    PyObject *codec_search_cache;
    PyObject *codec_error_registry;
    int codecs_initialized;

    PyConfig config;
    unsigned long feature_flags;

    PyObject *dict;  /* Stores per-interpreter state */

    PyObject *sysdict_copy;
    PyObject *builtins_copy;
    // Initialized to _PyEval_EvalFrameDefault().
    _PyFrameEvalFunction eval_frame;

    PyFunction_WatchCallback func_watchers[FUNC_MAX_WATCHERS];
    // One bit is set for each non-NULL entry in func_watchers
    uint8_t active_func_watchers;

    Py_ssize_t co_extra_user_count;
    freefunc co_extra_freefuncs[MAX_CO_EXTRA_USERS];

#ifdef HAVE_FORK
    PyObject *before_forkers;
    PyObject *after_forkers_parent;
    PyObject *after_forkers_child;
#endif

    struct _warnings_runtime_state warnings;
    struct atexit_state atexit;

    struct _obmalloc_state obmalloc;

    PyObject *audit_hooks;
    PyType_WatchCallback type_watchers[TYPE_MAX_WATCHERS];
    PyCode_WatchCallback code_watchers[CODE_MAX_WATCHERS];
    // One bit is set for each non-NULL entry in code_watchers
    uint8_t active_code_watchers;

    struct _py_object_state object_state;
    struct _Py_unicode_state unicode;
    struct _Py_float_state float_state;
    struct _Py_long_state long_state;
    struct _dtoa_state dtoa;
    struct _py_func_state func_state;
    /* Using a cache is very effective since typically only a single slice is
       created and then deleted again. */
    PySliceObject *slice_cache;

    struct _Py_tuple_state tuple;
    struct _Py_list_state list;
    struct _Py_dict_state dict_state;
    struct _Py_async_gen_state async_gen;
    struct _Py_context_state context;
    struct _Py_exc_state exc_state;

    struct ast_state ast;
    struct types_state types;
    struct callable_cache callable_cache;
    PyCodeObject *interpreter_trampoline;

    _Py_GlobalMonitors monitors;
    bool f_opcode_trace_set;
    bool sys_profile_initialized;
    bool sys_trace_initialized;
    Py_ssize_t sys_profiling_threads; /* Count of threads with c_profilefunc set */
    Py_ssize_t sys_tracing_threads; /* Count of threads with c_tracefunc set */
    PyObject *monitoring_callables[PY_MONITORING_TOOL_IDS][_PY_MONITORING_EVENTS];
    PyObject *monitoring_tool_names[PY_MONITORING_TOOL_IDS];

    struct _Py_interp_cached_objects cached_objects;
    struct _Py_interp_static_objects static_objects;

    // XXX Remove this field once we have a tp_* slot.
    struct _xidregistry xidregistry;
    /* The thread currently executing in the __main__ module, if any. */
    PyThreadState *threads_main;
    /* The ID of the OS thread in which we are finalizing.
       We use _Py_atomic_address instead of adding a new _Py_atomic_ulong. */
    _Py_atomic_address _finalizing_id;

   /* the initial PyInterpreterState.threads.head */
    PyThreadState _initial_thread;
};


/* other API */

extern void _PyInterpreterState_Clear(PyThreadState *tstate);


static inline PyThreadState*
_PyInterpreterState_GetFinalizing(PyInterpreterState *interp) {
    return (PyThreadState*)_Py_atomic_load_relaxed(&interp->_finalizing);
}

static inline unsigned long
_PyInterpreterState_GetFinalizingID(PyInterpreterState *interp) {
    return (unsigned long)_Py_atomic_load_relaxed(&interp->_finalizing_id);
}

static inline void
_PyInterpreterState_SetFinalizing(PyInterpreterState *interp, PyThreadState *tstate) {
    _Py_atomic_store_relaxed(&interp->_finalizing, (uintptr_t)tstate);
    if (tstate == NULL) {
        _Py_atomic_store_relaxed(&interp->_finalizing_id, 0);
    }
    else {
        // XXX Re-enable this assert once gh-109860 is fixed.
        //assert(tstate->thread_id == PyThread_get_thread_ident());
        _Py_atomic_store_relaxed(&interp->_finalizing_id,
                                 (uintptr_t)tstate->thread_id);
    }
}


PyAPI_FUNC(PyInterpreterState*) _PyInterpreterState_LookUpID(int64_t);

PyAPI_FUNC(int) _PyInterpreterState_IDInitref(PyInterpreterState *);
PyAPI_FUNC(int) _PyInterpreterState_IDIncref(PyInterpreterState *);
PyAPI_FUNC(void) _PyInterpreterState_IDDecref(PyInterpreterState *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTERNAL_INTERP_H */

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 13 2025 08:38:42
root / linksafe
0755
pycore_abstract.h
0.597 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_asdl.h
2.964 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_ast.h
30.555 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_ast_state.h
6.591 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_atexit.h
1.122 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_atomic.h
16.581 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_atomic_funcs.h
2.381 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_bitutils.h
5.92 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_blocks_output_buffer.h
8.484 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_bytes_methods.h
3.305 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_bytesobject.h
1.308 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_call.h
3.828 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_ceval.h
5.142 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_ceval_state.h
2.68 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_code.h
15.464 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_compile.h
3.372 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_condvar.h
2.841 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_context.h
1.271 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_descrobject.h
0.487 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_dict.h
6.234 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_dict_state.h
1.069 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_dtoa.h
1.577 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_emscripten_signal.h
0.549 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_exceptions.h
0.822 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_faulthandler.h
2.168 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_fileutils.h
7.725 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_fileutils_windows.h
2.66 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_floatobject.h
1.541 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_flowgraph.h
4.521 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_format.h
0.469 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_frame.h
9.038 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_function.h
0.597 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_gc.h
7.479 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_genobject.h
1.158 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_getopt.h
0.479 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_gil.h
1.528 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_global_objects.h
2.964 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_global_objects_fini_generated.h
112.657 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_global_strings.h
24.842 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_hamt.h
3.654 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_hashtable.h
4.186 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_import.h
6.209 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_initconfig.h
5.572 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_instruments.h
2.928 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_interp.h
8.873 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_intrinsics.h
1.364 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_list.h
1.934 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_long.h
7.622 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_memoryobject.h
0.374 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_moduleobject.h
1.164 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_namespace.h
0.383 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_object.h
14.567 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_object_state.h
0.992 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_obmalloc.h
26.645 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_obmalloc_init.h
2.036 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_opcode.h
19.61 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_opcode_utils.h
2.623 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_parser.h
1.326 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pathconfig.h
0.592 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pyarena.h
2.669 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pyerrors.h
3.037 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pyhash.h
0.692 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pylifecycle.h
3.286 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pymath.h
8.398 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pymem.h
2.969 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pymem_init.h
2.592 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pystate.h
4.865 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_pythread.h
2.026 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_range.h
0.338 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_runtime.h
8.231 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_runtime_init.h
5.773 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_runtime_init_generated.h
44.679 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_signal.h
2.55 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_sliceobject.h
0.404 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_strhex.h
0.915 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_structseq.h
0.901 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_symtable.h
6.87 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_sysmodule.h
0.976 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_time.h
0.379 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_token.h
2.979 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_traceback.h
3.419 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_tracemalloc.h
3.003 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_tuple.h
2.146 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_typeobject.h
4.62 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_typevarobject.h
0.745 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_ucnhash.h
0.877 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_unicodeobject.h
2.595 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_unicodeobject_generated.h
122.574 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_unionobject.h
0.666 KB
April 08 2025 11:35:47
root / linksafe
0644
pycore_warnings.h
0.723 KB
April 08 2025 11:35:47
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF