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

Latest commit

 

History

History
116 lines (96 loc) · 2.78 KB

SDL_systhread.c

File metadata and controls

116 lines (96 loc) · 2.78 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
Apr 26, 2001
Apr 26, 2001
4
Apr 8, 2011
Apr 8, 2011
5
6
7
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Apr 26, 2001
Apr 26, 2001
8
Apr 8, 2011
Apr 8, 2011
9
10
11
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
Apr 26, 2001
Apr 26, 2001
12
Apr 8, 2011
Apr 8, 2011
13
14
15
16
17
18
19
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Apr 26, 2001
Apr 26, 2001
20
*/
Feb 21, 2006
Feb 21, 2006
21
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
22
23
24
25
26
27
28
29
30
/* BeOS thread management routines for SDL */
#include <stdio.h>
#include <signal.h>
#include <be/kernel/OS.h>
#include "SDL_mutex.h"
#include "SDL_thread.h"
Feb 16, 2006
Feb 16, 2006
31
32
#include "../SDL_thread_c.h"
#include "../SDL_systhread.h"
Apr 26, 2001
Apr 26, 2001
33
34
35
static int sig_list[] = {
Jul 10, 2006
Jul 10, 2006
36
SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGALRM, SIGTERM, SIGWINCH, 0
Apr 26, 2001
Apr 26, 2001
37
38
};
Jul 10, 2006
Jul 10, 2006
39
40
void
SDL_MaskSignals(sigset_t * omask)
Apr 26, 2001
Apr 26, 2001
41
{
Jul 10, 2006
Jul 10, 2006
42
43
44
45
46
47
48
49
sigset_t mask;
int i;
sigemptyset(&mask);
for (i = 0; sig_list[i]; ++i) {
sigaddset(&mask, sig_list[i]);
}
sigprocmask(SIG_BLOCK, &mask, omask);
Apr 26, 2001
Apr 26, 2001
50
}
Jul 10, 2006
Jul 10, 2006
51
52
53
void
SDL_UnmaskSignals(sigset_t * omask)
Apr 26, 2001
Apr 26, 2001
54
{
Jul 10, 2006
Jul 10, 2006
55
sigprocmask(SIG_SETMASK, omask, NULL);
Apr 26, 2001
Apr 26, 2001
56
57
}
Jul 10, 2006
Jul 10, 2006
58
59
static int32
RunThread(void *data)
Apr 26, 2001
Apr 26, 2001
60
{
Jul 10, 2006
Jul 10, 2006
61
62
SDL_RunThread(data);
return (0);
Apr 26, 2001
Apr 26, 2001
63
64
}
Jul 10, 2006
Jul 10, 2006
65
66
int
SDL_SYS_CreateThread(SDL_Thread * thread, void *args)
Apr 26, 2001
Apr 26, 2001
67
{
Jul 10, 2006
Jul 10, 2006
68
69
70
71
72
73
74
75
76
/* Create the thread and go! */
thread->handle = spawn_thread(RunThread, "SDL", B_NORMAL_PRIORITY, args);
if ((thread->handle == B_NO_MORE_THREADS) ||
(thread->handle == B_NO_MEMORY)) {
SDL_SetError("Not enough resources to create thread");
return (-1);
}
resume_thread(thread->handle);
return (0);
Apr 26, 2001
Apr 26, 2001
77
78
}
Jul 10, 2006
Jul 10, 2006
79
80
void
SDL_SYS_SetupThread(void)
Apr 26, 2001
Apr 26, 2001
81
{
Jul 10, 2006
Jul 10, 2006
82
83
/* Mask asynchronous signals for this thread */
SDL_MaskSignals(NULL);
Apr 26, 2001
Apr 26, 2001
84
85
}
Dec 16, 2009
Dec 16, 2009
86
SDL_threadID
Jul 10, 2006
Jul 10, 2006
87
SDL_ThreadID(void)
Apr 26, 2001
Apr 26, 2001
88
{
Dec 16, 2009
Dec 16, 2009
89
return ((SDL_threadID) find_thread(NULL));
Apr 26, 2001
Apr 26, 2001
90
91
}
Mar 25, 2011
Mar 25, 2011
92
93
94
int
SDL_SYS_SetThreadPriority(SDL_Thread * thread, SDL_ThreadPriority priority)
{
Mar 25, 2011
Mar 25, 2011
95
int32 value;
Mar 25, 2011
Mar 25, 2011
96
97
if (priority == SDL_THREAD_PRIORITY_LOW) {
Mar 25, 2011
Mar 25, 2011
98
value = B_LOW_PRIORITY;
Mar 25, 2011
Mar 25, 2011
99
} else if (priority == SDL_THREAD_PRIORITY_HIGH) {
Mar 25, 2011
Mar 25, 2011
100
101
102
value = B_URGENT_DISPLAY_PRIORITY;
} else {
value = B_NORMAL_PRIORITY;
Mar 25, 2011
Mar 25, 2011
103
}
Mar 25, 2011
Mar 25, 2011
104
set_thread_priority(find_thread(NULL), value);
Mar 25, 2011
Mar 25, 2011
105
106
107
return 0;
}
Jul 10, 2006
Jul 10, 2006
108
109
void
SDL_SYS_WaitThread(SDL_Thread * thread)
Apr 26, 2001
Apr 26, 2001
110
{
Jul 10, 2006
Jul 10, 2006
111
status_t the_status;
Apr 26, 2001
Apr 26, 2001
112
Jul 10, 2006
Jul 10, 2006
113
wait_for_thread(thread->handle, &the_status);
Apr 26, 2001
Apr 26, 2001
114
115
}
Jul 10, 2006
Jul 10, 2006
116
/* vi: set ts=4 sw=4 expandtab: */