roriscrave
Advanced OT User
- Joined
- Dec 7, 2011
- Messages
- 1,210
- Solutions
- 35
- Reaction score
- 206
I identified that this function is using 14% of my CPU.
what is this function? is it possible to decrease this cpu usage?
of all C ++ code, it accounts for 28%. Which in the end refers to 14% of cpu use.
what is this function? is it possible to decrease this cpu usage?
of all C ++ code, it accounts for 28%. Which in the end refers to 14% of cpu use.
LUA:
C++ Usage CPU Usage Function:
28.95562% 12.73787% functor
C++:
void OutputMessagePool::scheduleSendAll()
{
auto functor = std::bind(&OutputMessagePool::sendAll, this);
g_scheduler.addEvent(createSchedulerTask(OUTPUTMESSAGE_AUTOSEND_DELAY.count(), functor));
}