Kaydet (Commit) ca1512cd authored tarafından Anthony Baxter's avatar Anthony Baxter

thread_pthread.h

üst 9fd582b6
...@@ -128,10 +128,10 @@ PyThread_start_new_thread(void (*func)(void *), void *arg) ...@@ -128,10 +128,10 @@ PyThread_start_new_thread(void (*func)(void *), void *arg)
{ {
pthread_t th; pthread_t th;
int success; int success;
dprintf(("PyThread_start_new_thread called\n"));
#ifdef PTHREAD_SYSTEM_SCHED_SUPPORTED #ifdef PTHREAD_SYSTEM_SCHED_SUPPORTED
pthread_attr_t attrs; pthread_attr_t attrs;
#endif #endif
dprintf(("PyThread_start_new_thread called\n"));
if (!initialized) if (!initialized)
PyThread_init_thread(); PyThread_init_thread();
#ifdef PTHREAD_SYSTEM_SCHED_SUPPORTED #ifdef PTHREAD_SYSTEM_SCHED_SUPPORTED
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment