cpu suspend mutex does not need to be recursive ... this should not be re-entrant

This commit is contained in:
Aaron Culliney 2015-09-07 11:00:07 -07:00
parent fa91a2806d
commit 411e474c4b

View File

@ -98,9 +98,6 @@ __attribute__((constructor(CTOR_PRIORITY_LATE)))
static void _init_timing(void) {
pthread_mutexattr_t attr;
pthread_mutexattr_init(&attr);
#if !TESTING
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
#endif
pthread_mutex_init(&interface_mutex, &attr);
}