MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / WorkerPriorityEnqueue

Method WorkerPriorityEnqueue

binaryninjaapi.cpp:338–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336
337
338void BinaryNinja::WorkerPriorityEnqueue(const function<void()>& action, const std::string& name)
339{
340 WorkerThreadActionContext* ctxt = new WorkerThreadActionContext;
341 ctxt->action = action;
342 BNWorkerPriorityEnqueueNamed(ctxt, WorkerActionCallback, name.c_str());
343}
344
345
346void BinaryNinja::WorkerPriorityEnqueue(RefCountObject* owner, const function<void()>& action, const std::string& name)

Callers

nothing calls this directly

Calls 2

c_strMethod · 0.80
funcMethod · 0.80

Tested by

no test coverage detected