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.

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.

share|improve this question
1  
TrySubmitThreadpoolCallback doesn'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
@ta.speot.is how can I add my function to winapi threadpool in easiest way. i need only to execute it assynchonosely. – Vsevywniy Oct 20 '12 at 8:40

1 Answer

up vote 0 down vote accepted

In order to be able to use TrySubmitThreadpoolCallback you should change signature of your function to

void CALLBACK MyFunction( PTP_CALLBACK_INSTANCE Instance, void* Context );

And then you can use it without problem. Remember that in windows most callbacks should have the CALLBACK in their definition, because default calling convention in C is __cdecl but in Windows API it is usually __stdcall(read it CALLBACK).

share|improve this answer
Thanks for reply!Imagine that i've ghanged signature, and how can i add this function to threadpool. – Vsevywniy Oct 20 '12 at 8:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.