summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_alloc.c
blob: 9fd4bcd95a8cbf388c2a0e787455060bfbeb4672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <unistd.h>

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

#include <stdlib.h>

static pthread_mutex_t mutex_alloc = PTHREAD_MUTEX_INITIALIZER;

void free(void *ptr) {
  __NO_ASYNC_CANCEL_BEGIN;
  pthread_mutex_lock(&mutex_alloc);
  __libc_free(ptr);
  pthread_mutex_unlock(&mutex_alloc);
  __NO_ASYNC_CANCEL_END;
}

void *malloc(size_t size) {
  register void *ret;
  __NO_ASYNC_CANCEL_BEGIN;
  pthread_mutex_lock(&mutex_alloc);
  ret=__libc_malloc(size);
  pthread_mutex_unlock(&mutex_alloc);
  __NO_ASYNC_CANCEL_END;
  return ret;
}

void* realloc(void* ptr, size_t size) {
  register void *ret;
  __NO_ASYNC_CANCEL_BEGIN;
  pthread_mutex_lock(&mutex_alloc);
  ret=__libc_realloc(ptr, size);
  pthread_mutex_unlock(&mutex_alloc);
  __NO_ASYNC_CANCEL_END;
  return ret;
}