comparison src/os/bsd/vm/osThread_bsd.hpp @ 14422:2b8e28fdf503

Merge
author kvn
date Tue, 05 Nov 2013 17:38:04 -0800
parents faff125a1ead
children
comparison
equal deleted inserted replaced
14421:3068270ba476 14422:2b8e28fdf503
40 private: 40 private:
41 41
42 #ifdef __APPLE__ 42 #ifdef __APPLE__
43 typedef thread_t thread_id_t; 43 typedef thread_t thread_id_t;
44 #else 44 #else
45 typedef pthread_t thread_id_t; 45 typedef pid_t thread_id_t;
46 #endif 46 #endif
47 47
48 // _pthread_id is the pthread id, which is used by library calls 48 // _pthread_id is the pthread id, which is used by library calls
49 // (e.g. pthread_kill). 49 // (e.g. pthread_kill).
50 pthread_t _pthread_id; 50 pthread_t _pthread_id;