Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
102 lines (87 loc) · 2.37 KB

SDL_sysmutex.c

File metadata and controls

102 lines (87 loc) · 2.37 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
/* Mutex functions using the Win32 API */
Feb 25, 2006
Feb 25, 2006
26
27
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
Apr 26, 2001
Apr 26, 2001
28
29
30
31
#include "SDL_mutex.h"
May 28, 2006
May 28, 2006
32
33
34
struct SDL_mutex
{
HANDLE id;
Apr 26, 2001
Apr 26, 2001
35
36
37
};
/* Create a mutex */
May 28, 2006
May 28, 2006
38
39
SDL_mutex *
SDL_CreateMutex (void)
Apr 26, 2001
Apr 26, 2001
40
{
May 28, 2006
May 28, 2006
41
SDL_mutex *mutex;
Apr 26, 2001
Apr 26, 2001
42
May 28, 2006
May 28, 2006
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Allocate mutex memory */
mutex = (SDL_mutex *) SDL_malloc (sizeof (*mutex));
if (mutex) {
/* Create the mutex, with initial value signaled */
mutex->id = CreateMutex (NULL, FALSE, NULL);
if (!mutex->id) {
SDL_SetError ("Couldn't create mutex");
SDL_free (mutex);
mutex = NULL;
}
} else {
SDL_OutOfMemory ();
}
return (mutex);
Apr 26, 2001
Apr 26, 2001
57
58
59
}
/* Free the mutex */
May 28, 2006
May 28, 2006
60
61
void
SDL_DestroyMutex (SDL_mutex * mutex)
Apr 26, 2001
Apr 26, 2001
62
{
May 28, 2006
May 28, 2006
63
64
65
66
67
68
69
if (mutex) {
if (mutex->id) {
CloseHandle (mutex->id);
mutex->id = 0;
}
SDL_free (mutex);
}
Apr 26, 2001
Apr 26, 2001
70
71
72
}
/* Lock the mutex */
May 28, 2006
May 28, 2006
73
74
int
SDL_mutexP (SDL_mutex * mutex)
Apr 26, 2001
Apr 26, 2001
75
{
May 28, 2006
May 28, 2006
76
77
78
79
80
81
82
83
84
if (mutex == NULL) {
SDL_SetError ("Passed a NULL mutex");
return -1;
}
if (WaitForSingleObject (mutex->id, INFINITE) == WAIT_FAILED) {
SDL_SetError ("Couldn't wait on mutex");
return -1;
}
return (0);
Apr 26, 2001
Apr 26, 2001
85
86
87
}
/* Unlock the mutex */
May 28, 2006
May 28, 2006
88
89
int
SDL_mutexV (SDL_mutex * mutex)
Apr 26, 2001
Apr 26, 2001
90
{
May 28, 2006
May 28, 2006
91
92
93
94
95
96
97
98
99
if (mutex == NULL) {
SDL_SetError ("Passed a NULL mutex");
return -1;
}
if (ReleaseMutex (mutex->id) == FALSE) {
SDL_SetError ("Couldn't release mutex");
return -1;
}
return (0);
Apr 26, 2001
Apr 26, 2001
100
}
May 28, 2006
May 28, 2006
101
102
/* vi: set ts=4 sw=4 expandtab: */