Select Git revision
labcomm_pthread_mutex_lock.c
Forked from
Anders Blomdell / LabComm
465 commits behind the upstream repository.
-
Anders Blomdell authoredAnders Blomdell authored
labcomm_pthread_mutex_lock.c 246 B
#include "labcomm.h"
#include "labcomm_private.h"
struct labcomm_lock *labcomm_pthread_mutex_lock_new()
{
struct labcomm_lock *result;
result = malloc(sizeof(*result));
if (result == NULL) {
goto out;
}
out:
return result;
}