22 #include "../../SDL_internal.h" 27 #include <pthread_np.h> 34 #include <sys/resource.h> 35 #include <sys/syscall.h> 39 #if defined(__LINUX__) || defined(__MACOSX__) || defined(__IPHONEOS__) 42 #define RTLD_DEFAULT NULL 48 #include "../SDL_thread_c.h" 49 #include "../SDL_systhread.h" 51 #include "../../core/android/SDL_android.h" 55 #include <kernel/OS.h> 63 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGALRM, SIGTERM, SIGCHLD, SIGWINCH,
78 #if defined(__MACOSX__) || defined(__IPHONEOS__) 80 static int (*ppthread_setname_np)(
const char*) =
NULL;
81 #elif defined(__LINUX__) 83 static int (*ppthread_setname_np)(pthread_t,
const char*) =
NULL;
91 #if defined(__MACOSX__) || defined(__IPHONEOS__) || defined(__LINUX__) 92 if (!checked_setname) {
93 void *fn = dlsym(RTLD_DEFAULT,
"pthread_setname_np");
94 #if defined(__MACOSX__) || defined(__IPHONEOS__) 95 ppthread_setname_np = (int(*)(
const char*)) fn;
96 #elif defined(__LINUX__) 97 ppthread_setname_np = (int(*)(pthread_t,
const char*)) fn;
104 if (pthread_attr_init(&type) != 0) {
105 return SDL_SetError(
"Couldn't initialize pthread attributes");
107 pthread_attr_setdetachstate(&type, PTHREAD_CREATE_JOINABLE);
111 pthread_attr_setstacksize(&type, (
size_t) thread->
stacksize);
116 return SDL_SetError(
"Not enough resources to create thread");
125 #if !defined(__NACL__) 131 #if defined(__MACOSX__) || defined(__IPHONEOS__) || defined(__LINUX__) 133 if (ppthread_setname_np !=
NULL) {
134 #if defined(__MACOSX__) || defined(__IPHONEOS__) 135 ppthread_setname_np(name);
136 #elif defined(__LINUX__) 137 ppthread_setname_np(pthread_self(), name);
140 #elif HAVE_PTHREAD_SETNAME_NP 141 #if defined(__NETBSD__) 142 pthread_setname_np(pthread_self(),
"%s", name);
144 pthread_setname_np(pthread_self(), name);
146 #elif HAVE_PTHREAD_SET_NAME_NP 147 pthread_set_name_np(pthread_self(), name);
148 #elif defined(__HAIKU__) 150 char namebuf[B_OS_NAME_LENGTH];
152 namebuf[
sizeof (namebuf) - 1] =
'\0';
153 rename_thread(find_thread(
NULL), namebuf);
158 #if !defined(__NACL__) 164 pthread_sigmask(SIG_BLOCK, &mask, 0);
168 #ifdef PTHREAD_CANCEL_ASYNCHRONOUS 172 pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldstate);
199 if (setpriority(PRIO_PROCESS, syscall(SYS_gettid), value) < 0) {
211 struct sched_param sched;
213 pthread_t thread = pthread_self();
215 if (pthread_getschedparam(thread, &policy, &sched) != 0) {
219 sched.sched_priority = sched_get_priority_min(policy);
221 sched.sched_priority = sched_get_priority_max(policy);
223 int min_priority = sched_get_priority_min(policy);
224 int max_priority = sched_get_priority_max(policy);
225 sched.sched_priority = (min_priority + (max_priority - min_priority) / 2);
227 if (pthread_setschedparam(thread, policy, &sched) != 0) {
237 pthread_join(thread->
handle, 0);
243 pthread_detach(thread->
handle);
static void * RunThread(void *data)
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
GLuint const GLchar * name
int Android_JNI_SetupThread(void)
SDL_threadID SDL_ThreadID(void)
void SDL_SYS_WaitThread(SDL_Thread *thread)
int SDL_SYS_SetThreadPriority(SDL_ThreadPriority priority)
GLsizei const GLfloat * value
void SDL_SYS_DetachThread(SDL_Thread *thread)
static const int sig_list[]
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display Drawable _Xconst char unsigned int unsigned int return Display Pixmap Pixmap XColor XColor unsigned int unsigned int return Display _Xconst char char int char return Display Visual unsigned int int int char unsigned int unsigned int in i)
#define SDL_assert(condition)
void SDL_RunThread(void *data)
void SDL_SYS_SetupThread(const char *name)
GLuint GLuint GLsizei GLenum type
int SDL_SYS_CreateThread(SDL_Thread *thread, void *args)
unsigned long SDL_threadID