I've searched in google, but cannot find how can I add my own function to Threadpool. I have a function with signature void MyFunction(void *param);. How I can create Threadpool and add this function for assynchronos execution. I know that exist TrySubmitThreadpoolCallback() function, but I cannot understand how to use it. I'll be very glad to see simple example.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
In order to be able to use
And then you can use it without problem. Remember that in windows most callbacks should have the |
|||
|
TrySubmitThreadpoolCallbackdoesn't look that difficult to use, but for the callback your function signature is not appropriate. – ta.speot.is Oct 20 '12 at 8:34