blob: 2f4b9204e0c097a56d133d0e39486516f2841a0a (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*******************************************************************
*
* ttmutex.c 1.0
*
* Mutual exclusion object, single-threaded implementation
*
* Copyright 1996-1999 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* This file is part of the FreeType project, and may only be used
* modified and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
* NOTE: This is a generic non-functional implementation
* that you are welcome to refine for your own system.
*
* Please name your system-specific source with a
* different name (like ttmutex-os2.c or ttmutex-linux.c)
* and change your makefile accordingly.
*
******************************************************************/
#include "ttmutex.h"
/* required by the tracing mode */
#undef TT_COMPONENT
#define TT_COMPONENT trace_mutex
/* ANSI C prevents the compilation of empty units. We thus introduce */
/* a dummy typedef to get rid of compiler warnings/errors. */
/* Note that gcc's -ansi -pedantic does not report any error here. */
/* Watcom, VC++ or Borland C++ do however. */
typedef void _ttmutex_to_satisfy_ANSI_C_;
#ifdef TT_CONFIG_OPTION_THREAD_SAFE
LOCAL_FUNC
void TT_Mutex_Create ( TMutex* mutex )
{
*mutex = (void*)-1;
/* Replace this line with your own mutex creation code */
}
LOCAL_FUNC
void TT_Mutex_Delete ( TMutex* mutex )
{
*mutex = (void*)0;
/* Replace this line with your own mutex destruction code */
}
LOCAL_FUNC
void TT_Mutex_Lock ( TMutex* mutex )
{
/* NOTE: It is legal to call this function with a NULL argument */
/* in which case an immediate return is appropriate. */
if ( !mutex )
return;
; /* Insert your own mutex locking code here */
}
LOCAL_FUNC
void TT_Mutex_Release( TMutex* mutex )
{
/* NOTE: It is legal to call this function with a NULL argument */
/* in which case an immediate return is appropriate */
if ( !mutex )
return;
; /* Insert your own mutex release code here */
}
#endif /* TT_CONFIG_OPTION_THREAD_SAFE */
/* END */
|