From 14e119d3c0ff2443112bca685ab52f1ad7f8fe8c Mon Sep 17 00:00:00 2001 From: bje Date: Thu, 9 Jul 1998 13:14:50 +0000 Subject: 1998-07-09 Ben Elliston * create.c (pthread_create): A dummy stub right now. --- create.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 create.c (limited to 'create.c') 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. + */ +} -- cgit v1.2.3