diff options
-rw-r--r-- | create.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/create.c b/create.c new file mode 100644 index 0000000..978e011 --- /dev/null +++ b/create.c @@ -0,0 +1,17 @@ +/* + * create.c + * + * Description: + * This translation unit implements routines associated with spawning a new + * thread. + */ + +#include "pthread.h" + +int pthread_create(pthread_t *thread, const pthread_attr_t *attr, + void * (*start_routine) (void *), void * arg) +{ + /* Call Win32 CreateThread. + Map attributes as correctly as possible. + */ +} |