mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
gh-138122: Add --subprocesses flag to profile child processes in tachyon (#142636)
This commit is contained in:
parent
14e6052b43
commit
6658e2cb07
22 changed files with 2702 additions and 562 deletions
|
|
@ -1994,6 +1994,7 @@ _PyStaticObjects_CheckRefcnt(PyInterpreterState *interp) {
|
|||
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(readline));
|
||||
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(readonly));
|
||||
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(real));
|
||||
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(recursive));
|
||||
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(reducer_override));
|
||||
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(registry));
|
||||
_PyStaticObject_CheckRefcnt((PyObject *)&_Py_ID(rel_tol));
|
||||
|
|
|
|||
|
|
@ -717,6 +717,7 @@ struct _Py_global_strings {
|
|||
STRUCT_FOR_ID(readline)
|
||||
STRUCT_FOR_ID(readonly)
|
||||
STRUCT_FOR_ID(real)
|
||||
STRUCT_FOR_ID(recursive)
|
||||
STRUCT_FOR_ID(reducer_override)
|
||||
STRUCT_FOR_ID(registry)
|
||||
STRUCT_FOR_ID(rel_tol)
|
||||
|
|
|
|||
1
Include/internal/pycore_runtime_init_generated.h
generated
1
Include/internal/pycore_runtime_init_generated.h
generated
|
|
@ -1992,6 +1992,7 @@ extern "C" {
|
|||
INIT_ID(readline), \
|
||||
INIT_ID(readonly), \
|
||||
INIT_ID(real), \
|
||||
INIT_ID(recursive), \
|
||||
INIT_ID(reducer_override), \
|
||||
INIT_ID(registry), \
|
||||
INIT_ID(rel_tol), \
|
||||
|
|
|
|||
|
|
@ -2648,6 +2648,10 @@ _PyUnicode_InitStaticStrings(PyInterpreterState *interp) {
|
|||
_PyUnicode_InternStatic(interp, &string);
|
||||
assert(_PyUnicode_CheckConsistency(string, 1));
|
||||
assert(PyUnicode_GET_LENGTH(string) != 1);
|
||||
string = &_Py_ID(recursive);
|
||||
_PyUnicode_InternStatic(interp, &string);
|
||||
assert(_PyUnicode_CheckConsistency(string, 1));
|
||||
assert(PyUnicode_GET_LENGTH(string) != 1);
|
||||
string = &_Py_ID(reducer_override);
|
||||
_PyUnicode_InternStatic(interp, &string);
|
||||
assert(_PyUnicode_CheckConsistency(string, 1));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue