我需要检查 pthread_t 是否为主线程。 我想从当前线程(不是来自 pthread_t ,我需要检查而不是主线程)来做。
我的代码( pt pthread_t )
NSThread *thread = CFBridgingRelease(pt); // it works wrong
bool isMain = thread.isMainThread;
但我无法将 pthread_t 转换为 NSThread 。
如何将 pthread_t 转换为 NSThread ?
或者我如何检查 pthread_t 是否是主线程?