blob: 74855be7821edf5bc8d6a5aa729378bbaba04766 (
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
|
/* $OpenBSD: unithread_malloc_lock.c,v 1.4 2002/11/05 22:19:55 marc Exp $ */
#include <sys/cdefs.h>
#include <pthread.h>
#include "thread_private.h"
WEAK_PROTOTYPE(_thread_malloc_lock);
WEAK_PROTOTYPE(_thread_malloc_unlock);
WEAK_PROTOTYPE(_thread_malloc_init);
WEAK_ALIAS(_thread_malloc_lock);
WEAK_ALIAS(_thread_malloc_unlock);
WEAK_ALIAS(_thread_malloc_init);
void
WEAK_NAME(_thread_malloc_lock)(void)
{
return;
}
void
WEAK_NAME(_thread_malloc_unlock)(void)
{
return;
}
void
WEAK_NAME(_thread_malloc_init)(void)
{
return;
}
|