blob: f7231915d6fc628e57668b36a5169b41c19c4ad6 (
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
37
38
39
40
41
42
43
44
45
46
47
48
|
/* $OpenBSD: unithread_malloc_lock.c,v 1.6 2006/02/22 07:16:32 otto Exp $ */
#include <sys/time.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);
WEAK_PROTOTYPE(_thread_atexit_lock);
WEAK_PROTOTYPE(_thread_atexit_unlock);
WEAK_ALIAS(_thread_atexit_lock);
WEAK_ALIAS(_thread_atexit_unlock);
void
WEAK_NAME(_thread_malloc_lock)(void)
{
return;
}
void
WEAK_NAME(_thread_malloc_unlock)(void)
{
return;
}
void
WEAK_NAME(_thread_malloc_init)(void)
{
return;
}
void
WEAK_NAME(_thread_atexit_lock)(void)
{
return;
}
void
WEAK_NAME(_thread_atexit_unlock)(void)
{
return;
}
|