summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_mutex_destroy.c
blob: 33a16abd49e8da0ee0b1dac5e8a2e667188273b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <unistd.h>
#include <errno.h>

#include <pthread.h>
#include "thread_internal.h"

int pthread_mutex_destroy(pthread_mutex_t *mutex)
{
  __THREAD_INIT();

  if ((mutex->owner)||(mutex->lock.__spinlock)) {
    (*(__errno_location()))=EBUSY;
    return -1;
  }
  return 0;
}