I’m trying to write some multithreading code for mobile apps. I’m thinking about Boost C++ thread library for both iOS and Android. But anyone knows if Boost thread is supported by both platforms? Thanks!
I’m trying to write some multithreading code for mobile apps. I’m thinking about Boost
Share
Yes, I’m currently maintaining
boost::threadcode that runs on iOS and Android.That said, unless you’re attempting to run the same codebase on the two platforms, I would recommend Grand Central Dispatch on iOS instead of
boost::thread.