source: trunk/essentials/dev-lang/python/Python/thread_solaris.h@ 3397

Last change on this file since 3397 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 3.0 KB
Line 
1
2#include <stdlib.h>
3#include <stdio.h>
4#include <errno.h>
5#include </usr/include/thread.h>
6#undef _POSIX_THREADS
7
8
9/*
10 * Initialization.
11 */
12static void PyThread__init_thread(void)
13{
14}
15
16/*
17 * Thread support.
18 */
19struct func_arg {
20 void (*func)(void *);
21 void *arg;
22};
23
24static void *
25new_func(void *funcarg)