-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathsystem_linux.go
57 lines (45 loc) · 1.54 KB
/
system_linux.go
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
// +build !android
package sdl
/*
#include "sdl_wrapper.h"
#if !(SDL_VERSION_ATLEAST(2,0,9))
#if defined(WARN_OUTDATED)
#pragma message("SDL_LinuxSetThreadPriority is not supported before SDL 2.0.9")
#endif
static int SDL_LinuxSetThreadPriority(Sint64 threadID, int priority)
{
return -1;
}
#endif
#if !(SDL_VERSION_ATLEAST(2,0,18))
#if defined(WARN_OUTDATED)
#pragma message("SDL_LinuxSetThreadPriorityAndPolicy is not supported before SDL 2.0.18")
#endif
static int SDL_LinuxSetThreadPriorityAndPolicy(Sint64 threadID, int sdlPriority, int schedPolicy)
{
return -1;
}
#endif
*/
import "C"
// LinuxSetThreadPriority sets the UNIX nice value for a thread.
//
// This uses setpriority() if possible, and RealtimeKit if available.
//
// (https://wiki.libsdl.org/SDL2/SDL_LinuxSetThreadPriority)
func LinuxSetThreadPriority(threadID int64, priority int) (err error) {
_threadID := C.Sint64(threadID)
_priority := C.int(priority)
return errorFromInt(int(C.SDL_LinuxSetThreadPriority(_threadID, _priority)))
}
// LinuxSetThreadPriority sets the priority (not nice level) and scheduling policy for a thread.
//
// This uses setpriority() if possible, and RealtimeKit if available.
//
// (https://wiki.libsdl.org/SDL2/SDL_LinuxSetThreadPriorityAndPolicy)
func LinuxSetThreadPriorityAndPolicy(threadID int64, sdlPriority, schedPolicy int) (err error) {
_threadID := C.Sint64(threadID)
_sdlPriority := C.int(sdlPriority)
_schedPolicy := C.int(schedPolicy)
return errorFromInt(int(C.SDL_LinuxSetThreadPriorityAndPolicy(_threadID, _sdlPriority, _schedPolicy)))
}