pthreads :: NativePthreadMutexAttr :: new
new `{ pthread_mutexattr_t *attr = malloc(sizeof(pthread_mutexattr_t)); int r = pthread_mutexattr_init(attr); if (r != 0) { free(attr); return NULL; } return attr; `}