89fbc03726203c5c0bc58092c4d67a7160601958
[gnulib.git] / lib / pthread.in.h
1 /* Implement a trivial subset of the pthreads library.
2
3    Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 /* Written by Glen Lenker.  */
20
21 #ifndef PTHREAD_H_
22 # define PTHREAD_H_
23
24 # include <errno.h>
25 # include <stdlib.h>
26
27 typedef int pthread_t;
28 typedef int pthread_attr_t;
29
30 static int
31 pthread_create (pthread_t *restrict thread,
32                 const pthread_attr_t *restrict attr,
33                 void *(*start_routine)(void*), void *restrict arg)
34 {
35   errno = EAGAIN;
36   return -1;
37 }
38
39 static int
40 pthread_join (pthread_t thread, void **value_ptr)
41 {
42   abort ();
43   return -1;
44 }
45
46 #endif /* PTHREAD_H_ */