c++ Programming Glossary: nsthread
how to set a threadname in MacOSX http://stackoverflow.com/questions/2057960/how-to-set-a-threadname-in-macosx indicates that there are threadnames. I think the class NSThread also has a name attribute. My goal is that I can set the threadname.. share improve this question I recommend the following NSThread currentThread setName @ My thread name For Cocoa pthread_setname_np..
pthread vs NSThread: which is faster http://stackoverflow.com/questions/2067392/pthread-vs-nsthread-which-is-faster vs NSThread which is faster In Cocoa is NSThread faster than pthread is.. vs NSThread which is faster In Cocoa is NSThread faster than pthread is are any performance gain is it negligible.. I'm going to go out on a limb and say they're equivalent . NSThread is almost certainly wrapper around pthread is there really any..
|