I am using gperftools to profile my C++ code, and the largest node is __GI___poll
. It's being called by low level Qt and OpenCL code (mostly Qt), so it's several steps removed from my own code. My guess is that this is just a general-use "wait on event" function, but my searching efforts came up dry.
What is this function, and what could it say about my code that it's spending so much time here?