Home
last modified time | relevance | path

Searched refs:_Py_atomic_load_relaxed (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Python/
Dceval_gil.h151 if (!_Py_atomic_load_relaxed(&_PyRuntime.ceval.gil.locked)) in drop_gil()
169 if (_Py_atomic_load_relaxed(&_PyRuntime.ceval.gil_drop_request) && in drop_gil()
174 if (((PyThreadState*)_Py_atomic_load_relaxed( in drop_gil()
200 if (!_Py_atomic_load_relaxed(&_PyRuntime.ceval.gil.locked)) in take_gil()
203 while (_Py_atomic_load_relaxed(&_PyRuntime.ceval.gil.locked)) { in take_gil()
213 _Py_atomic_load_relaxed(&_PyRuntime.ceval.gil.locked) && in take_gil()
228 if (tstate != (PyThreadState*)_Py_atomic_load_relaxed( in take_gil()
240 if (_Py_atomic_load_relaxed(&_PyRuntime.ceval.gil_drop_request)) { in take_gil()
Dceval.c92 #define GIL_REQUEST _Py_atomic_load_relaxed(&_PyRuntime.ceval.gil_drop_request)
101 _Py_atomic_load_relaxed(&_PyRuntime.ceval.pending.calls_to_do) | \
191 drop_gil((PyThreadState*)_Py_atomic_load_relaxed( in PyEval_ReleaseLock()
649 if (!_Py_atomic_load_relaxed(&_PyRuntime.ceval.eval_breaker)) { \ in _PyEval_EvalFrameDefault()
943 if (_Py_atomic_load_relaxed(&_PyRuntime.ceval.eval_breaker)) { in _PyEval_EvalFrameDefault()
967 if (_Py_atomic_load_relaxed( in _PyEval_EvalFrameDefault()
973 if (_Py_atomic_load_relaxed( in _PyEval_EvalFrameDefault()
Dpystate.c8 ((PyThreadState*)_Py_atomic_load_relaxed(&_PyThreadState_Current))
/external/python/cpython3/Include/
Dpystate.h366 ((PyThreadState*)_Py_atomic_load_relaxed(&_PyThreadState_Current))
Dpyatomic.h532 #define _Py_atomic_load_relaxed(ATOMIC_VAL) \ macro
/external/python/cpython3/Modules/
Dsignalmodule.c1542 if (_Py_atomic_load_relaxed(&Handlers[i].tripped)) { in PyErr_CheckSignals()
1592 if (_Py_atomic_load_relaxed(&Handlers[SIGINT].tripped)) { in PyOS_InterruptOccurred()