Skip to content
Snippets Groups Projects
Commit 5fd97b2f authored by Cédric Traizet's avatar Cédric Traizet
Browse files

DOC: add comment on GIL acquisition in PythonLogOutput

parent 9ce9b0b4
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,8 @@ void PythonLogOutput::Write(double timestamp)
void PythonLogOutput::Write(std::string const& content)
{
// Note : Reacuiring the GIL before calling the callback doesn' seems to be
// necessary with thread=1 and director classes
m_Callback->Call(content);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment