Here is a pretty serious crisis I am facing. I am having an application which was designed for windows and windows thread is used in my code.
This is the scenerio I want to port my application to android and I know windows thread doesn't run on Android os. Can any body tell me how can I change my threading to support Android.
Yes rewriting threads in P-threads is good option but is there any easy way to support multithreading on Android with existing windows thread.
Threading on both Windows and Linux
I referred the above link where it tells about threading in Linux and windows using boost::thread.
But the problem is the lib is in C++
and my code is in C
Looking forward for your input for easy transition of windows thread to threading for my android app.
Thanks in Advance