We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 272f671 commit 1908616Copy full SHA for 1908616
1 file changed
src/methods.cpp
@@ -194,7 +194,7 @@ extern "C"
194
return PyUnicode_FromString(scorepy::abspath(path).c_str());
195
}
196
197
- static PyObject* manual_finalize(PyObject* self, PyObject* args)
+ static PyObject* force_finalize(PyObject* self, PyObject* args)
198
{
199
SCOREP_FinalizeMeasurement();
200
Py_RETURN_NONE;
@@ -221,7 +221,7 @@ extern "C"
221
{ "get_experiment_dir_name", get_experiment_dir_name, METH_VARARGS,
222
"Get the Score-P experiment dir." },
223
{ "abspath", abspath, METH_VARARGS, "Estimates the absolute Path." },
224
- { "manual_finalize", manual_finalize, METH_VARARGS, "triggers a finalize" },
+ { "force_finalize", force_finalize, METH_VARARGS, "triggers a finalize" },
225
{ "reregister_exit_handler", reregister_exit_handler, METH_VARARGS,
226
"register an new atexit handler" },
227
{ NULL, NULL, 0, NULL } /* Sentinel */
0 commit comments