2013-08-31 07:15:53 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2013, 2014.
|
|
|
|
|
|
|
|
This file is part of Sortix libpthread.
|
|
|
|
|
|
|
|
Sortix libpthread is free software: you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU Lesser General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
Sortix libpthread is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with Sortix libpthread. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
pthread.h
|
|
|
|
Thread API.
|
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef INCLUDE_PTHREAD_H
|
|
|
|
#define INCLUDE_PTHREAD_H
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
#include <sys/__/types.h>
|
|
|
|
|
|
|
|
#include <sched.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#if defined(__is_sortix_libpthread)
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__is_sortix_libpthread)
|
|
|
|
#include <sortix/uthread.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <__/pthread.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
/* TODO: #define PTHREAD_BARRIER_SERIAL_THREAD */
|
|
|
|
/* TODO: #define PTHREAD_CANCEL_ASYNCHRONOUS */
|
|
|
|
/* TODO: #define PTHREAD_CANCEL_ENABLE */
|
|
|
|
/* TODO: #define PTHREAD_CANCEL_DEFERRED */
|
|
|
|
/* TODO: #define PTHREAD_CANCEL_DISABLE */
|
|
|
|
/* TODO: #define PTHREAD_CANCELED */
|
|
|
|
/* TODO: #define PTHREAD_CREATE_DETACHED */
|
|
|
|
/* TODO: #define PTHREAD_CREATE_JOINABLE */
|
|
|
|
/* TODO: #define PTHREAD_EXPLICIT_SCHED */
|
|
|
|
/* TODO: #define PTHREAD_INHERIT_SCHED */
|
2013-08-31 07:18:20 -04:00
|
|
|
#define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_NORMAL
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: #define PTHREAD_MUTEX_ERRORCHECK */
|
2013-08-31 07:18:20 -04:00
|
|
|
#define PTHREAD_MUTEX_NORMAL 0
|
|
|
|
#define PTHREAD_MUTEX_RECURSIVE 1
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: #define PTHREAD_MUTEX_ROBUST */
|
|
|
|
/* TODO: #define PTHREAD_MUTEX_STALLED */
|
|
|
|
/* TODO: #define PTHREAD_PRIO_INHERIT */
|
|
|
|
/* TODO: #define PTHREAD_PRIO_NONE */
|
|
|
|
/* TODO: #define PTHREAD_PRIO_PROTECT */
|
|
|
|
/* TODO: #define PTHREAD_PROCESS_SHARED */
|
|
|
|
/* TODO: #define PTHREAD_PROCESS_PRIVATE */
|
|
|
|
/* TODO: #define PTHREAD_SCOPE_PROCESS */
|
|
|
|
/* TODO: #define PTHREAD_SCOPE_SYSTEM */
|
|
|
|
|
|
|
|
#ifndef __pthread_attr_t_defined
|
|
|
|
#define __pthread_attr_t_defined
|
|
|
|
typedef __pthread_attr_t pthread_attr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_barrier_t_defined
|
|
|
|
#define __pthread_barrier_t_defined
|
|
|
|
typedef __pthread_barrier_t pthread_barrier_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_barrierattr_t_defined
|
|
|
|
#define __pthread_barrierattr_t_defined
|
|
|
|
typedef __pthread_barrierattr_t pthread_barrierattr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_cond_t_defined
|
|
|
|
#define __pthread_cond_t_defined
|
|
|
|
typedef __pthread_cond_t pthread_cond_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_condattr_t_defined
|
|
|
|
#define __pthread_condattr_t_defined
|
|
|
|
typedef __pthread_condattr_t pthread_condattr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_key_t_defined
|
|
|
|
#define __pthread_key_t_defined
|
|
|
|
typedef __pthread_key_t pthread_key_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_mutex_t_defined
|
|
|
|
#define __pthread_mutex_t_defined
|
|
|
|
typedef __pthread_mutex_t pthread_mutex_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_mutexattr_t_defined
|
|
|
|
#define __pthread_mutexattr_t_defined
|
|
|
|
typedef __pthread_mutexattr_t pthread_mutexattr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_once_t_defined
|
|
|
|
#define __pthread_once_t_defined
|
|
|
|
typedef __pthread_once_t pthread_once_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_rwlock_t_defined
|
|
|
|
#define __pthread_rwlock_t_defined
|
|
|
|
typedef __pthread_rwlock_t pthread_rwlock_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_rwlockattr_t_defined
|
|
|
|
#define __pthread_rwlockattr_t_defined
|
|
|
|
typedef __pthread_rwlockattr_t pthread_rwlockattr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_spinlock_t_defined
|
|
|
|
#define __pthread_spinlock_t_defined
|
|
|
|
typedef __pthread_spinlock_t pthread_spinlock_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __pthread_t_defined
|
|
|
|
#define __pthread_t_defined
|
|
|
|
typedef __pthread_t pthread_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__is_sortix_libpthread)
|
|
|
|
struct pthread
|
|
|
|
{
|
|
|
|
struct uthread uthread;
|
2013-08-31 12:04:36 -04:00
|
|
|
void* (*entry_function)(void*);
|
|
|
|
void* entry_cookie;
|
2014-01-13 16:33:00 -05:00
|
|
|
void** keys;
|
|
|
|
size_t keys_length;
|
2013-08-31 07:15:53 -04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2013-09-03 09:17:13 -04:00
|
|
|
#if defined(__is_sortix_libpthread)
|
|
|
|
struct pthread_cond_elem
|
|
|
|
{
|
|
|
|
struct pthread_cond_elem* next;
|
|
|
|
volatile unsigned long woken;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2014-07-07 09:13:17 -04:00
|
|
|
#define PTHREAD_COND_INITIALIZER { NULL, NULL, CLOCK_REALTIME }
|
2013-08-31 07:18:20 -04:00
|
|
|
#define PTHREAD_MUTEX_INITIALIZER { 0, PTHREAD_MUTEX_DEFAULT, 0, 0 }
|
2013-09-03 15:47:19 -04:00
|
|
|
#define PTHREAD_RWLOCK_INITIALIZER { PTHREAD_COND_INITIALIZER, \
|
|
|
|
PTHREAD_COND_INITIALIZER, \
|
|
|
|
PTHREAD_MUTEX_INITIALIZER, 0, 0, 0, 0 }
|
2013-08-31 07:15:53 -04:00
|
|
|
|
2013-08-31 07:18:20 -04:00
|
|
|
#define PTHREAD_NORMAL_MUTEX_INITIALIZER_NP { 0, PTHREAD_MUTEX_NORMAL, 0, 0 }
|
|
|
|
#define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP { 0, PTHREAD_MUTEX_RECURSIVE, 0, 0 }
|
|
|
|
|
2014-01-10 10:01:28 -05:00
|
|
|
#define PTHREAD_ONCE_INIT { PTHREAD_NORMAL_MUTEX_INITIALIZER_NP, 0 }
|
|
|
|
|
2013-08-31 07:15:53 -04:00
|
|
|
void pthread_initialize(void);
|
|
|
|
|
2014-01-13 16:00:41 -05:00
|
|
|
#if defined(__is_sortix_libpthread)
|
|
|
|
|
|
|
|
struct pthread_key
|
|
|
|
{
|
|
|
|
void (*destructor)(void*);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern pthread_mutex_t __pthread_keys_lock;
|
|
|
|
extern struct pthread_key* __pthread_keys;
|
|
|
|
extern size_t __pthread_keys_used;
|
|
|
|
extern size_t __pthread_keys_length;
|
2013-08-31 12:04:36 -04:00
|
|
|
extern pthread_mutex_t __pthread_num_threads_lock;
|
|
|
|
extern size_t __pthread_num_threads;
|
|
|
|
|
|
|
|
struct pthread* pthread_allocate_tls(void);
|
2014-01-13 16:00:41 -05:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_atfork */
|
2013-09-03 09:06:16 -04:00
|
|
|
int pthread_attr_destroy(pthread_attr_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_attr_getdetachstate */
|
|
|
|
/* TODO: pthread_attr_getguardsize */
|
|
|
|
/* TODO: pthread_attr_getinheritsched */
|
|
|
|
/* TODO: pthread_attr_getschedparam */
|
|
|
|
/* TODO: pthread_attr_getschedpolicy */
|
|
|
|
/* TODO: pthread_attr_getscope */
|
|
|
|
/* TODO: pthread_attr_getstack */
|
2013-09-03 09:08:38 -04:00
|
|
|
int pthread_attr_getstacksize(const pthread_attr_t* __restrict,
|
|
|
|
size_t* __restrict);
|
2013-09-03 09:06:16 -04:00
|
|
|
int pthread_attr_init(pthread_attr_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_attr_setdetachstate */
|
|
|
|
/* TODO: pthread_attr_setguardsize */
|
|
|
|
/* TODO: pthread_attr_setinheritsched */
|
|
|
|
/* TODO: pthread_attr_setschedparam */
|
|
|
|
/* TODO: pthread_attr_setschedpolicy */
|
|
|
|
/* TODO: pthread_attr_setscope */
|
|
|
|
/* TODO: pthread_attr_setstack */
|
2013-09-03 09:08:38 -04:00
|
|
|
int pthread_attr_setstacksize(pthread_attr_t*, size_t);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_barrier_destroy */
|
|
|
|
/* TODO: pthread_barrier_init */
|
|
|
|
/* TODO: pthread_barrier_wait */
|
|
|
|
/* TODO: pthread_barrierattr_destroy */
|
|
|
|
/* TODO: pthread_barrierattr_getpshared */
|
|
|
|
/* TODO: pthread_barrierattr_init */
|
|
|
|
/* TODO: pthread_barrierattr_setpshared */
|
|
|
|
/* TODO: pthread_cancel */
|
|
|
|
/* TODO: pthread_cleanup_pop */
|
|
|
|
/* TODO: pthread_cleanup_push */
|
2013-09-03 09:17:13 -04:00
|
|
|
int pthread_cond_broadcast(pthread_cond_t*);
|
2013-09-03 09:36:33 -04:00
|
|
|
int pthread_cond_destroy(pthread_cond_t*);
|
|
|
|
int pthread_cond_init(pthread_cond_t* __restrict,
|
|
|
|
const pthread_condattr_t* __restrict);
|
2013-09-03 09:17:13 -04:00
|
|
|
int pthread_cond_signal(pthread_cond_t*);
|
2013-09-16 18:07:29 -04:00
|
|
|
int pthread_cond_timedwait(pthread_cond_t* __restrict,
|
|
|
|
pthread_mutex_t* __restrict,
|
|
|
|
const struct timespec* __restrict);
|
2013-09-03 09:17:13 -04:00
|
|
|
int pthread_cond_wait(pthread_cond_t* __restrict, pthread_mutex_t* __restrict);
|
2013-09-03 09:51:15 -04:00
|
|
|
int pthread_condattr_destroy(pthread_condattr_t*);
|
2014-07-07 09:13:17 -04:00
|
|
|
int pthread_condattr_getclock(const pthread_condattr_t* __restrict,
|
|
|
|
clockid_t* __restrict);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_condattr_getpshared */
|
2013-09-03 09:51:15 -04:00
|
|
|
int pthread_condattr_init(pthread_condattr_t*);
|
2014-07-07 09:13:17 -04:00
|
|
|
int pthread_condattr_setclock(pthread_condattr_t*, clockid_t);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_condattr_setpshared */
|
2013-08-31 12:04:36 -04:00
|
|
|
int pthread_create(pthread_t* __restrict,
|
|
|
|
const pthread_attr_t* __restrict,
|
|
|
|
void* (*)(void*),
|
|
|
|
void* __restrict);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_detach */
|
2013-09-15 11:24:20 -04:00
|
|
|
int pthread_equal(pthread_t, pthread_t);
|
2013-08-31 13:46:42 -04:00
|
|
|
__attribute__((__noreturn__))
|
|
|
|
void pthread_exit(void*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_getconcurrency */
|
|
|
|
/* TODO: pthread_getcpuclockid */
|
|
|
|
/* TODO: pthread_getschedparam */
|
2014-01-13 16:33:00 -05:00
|
|
|
void* pthread_getspecific(pthread_key_t);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_join */
|
2014-01-13 16:00:41 -05:00
|
|
|
int pthread_key_create(pthread_key_t*, void (*)(void*));
|
|
|
|
int pthread_key_delete(pthread_key_t);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_mutex_consistent */
|
2013-08-31 09:06:56 -04:00
|
|
|
int pthread_mutex_destroy(pthread_mutex_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_mutex_getprioceiling */
|
2013-08-31 09:06:56 -04:00
|
|
|
int pthread_mutex_init(pthread_mutex_t* __restrict,
|
|
|
|
const pthread_mutexattr_t* __restrict);
|
2013-08-31 07:18:20 -04:00
|
|
|
int pthread_mutex_lock(pthread_mutex_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_mutex_setprioceiling */
|
|
|
|
/* TODO: pthread_mutex_timedlock */
|
2013-08-31 08:55:16 -04:00
|
|
|
int pthread_mutex_trylock(pthread_mutex_t*);
|
2013-08-31 07:18:20 -04:00
|
|
|
int pthread_mutex_unlock(pthread_mutex_t*);
|
2013-09-03 08:51:44 -04:00
|
|
|
int pthread_mutexattr_destroy(pthread_mutexattr_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_mutexattr_getprioceiling */
|
|
|
|
/* TODO: pthread_mutexattr_getprotocol */
|
|
|
|
/* TODO: pthread_mutexattr_getpshared */
|
|
|
|
/* TODO: pthread_mutexattr_getrobust */
|
2014-01-08 13:04:16 -05:00
|
|
|
int pthread_mutexattr_gettype(pthread_mutexattr_t* __restrict, int* __restrict);
|
2013-09-03 08:51:44 -04:00
|
|
|
int pthread_mutexattr_init(pthread_mutexattr_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_mutexattr_setprioceiling */
|
|
|
|
/* TODO: pthread_mutexattr_setprotocol */
|
|
|
|
/* TODO: pthread_mutexattr_setpshared */
|
|
|
|
/* TODO: pthread_mutexattr_setrobust */
|
2014-01-08 13:04:16 -05:00
|
|
|
int pthread_mutexattr_settype(pthread_mutexattr_t*, int);
|
2014-01-10 10:01:28 -05:00
|
|
|
int pthread_once(pthread_once_t*, void (*)(void));
|
2013-09-03 15:56:28 -04:00
|
|
|
int pthread_rwlock_destroy(pthread_rwlock_t*);
|
|
|
|
int pthread_rwlock_init(pthread_rwlock_t* __restrict,
|
|
|
|
const pthread_rwlockattr_t* __restrict);
|
2013-09-03 15:47:19 -04:00
|
|
|
int pthread_rwlock_rdlock(pthread_rwlock_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_rwlock_timedrdlock */
|
|
|
|
/* TODO: pthread_rwlock_timedwrlock */
|
2013-09-03 16:10:28 -04:00
|
|
|
int pthread_rwlock_tryrdlock(pthread_rwlock_t*);
|
|
|
|
int pthread_rwlock_trywrlock(pthread_rwlock_t*);
|
2013-09-03 15:47:19 -04:00
|
|
|
int pthread_rwlock_unlock(pthread_rwlock_t*);
|
|
|
|
int pthread_rwlock_wrlock(pthread_rwlock_t*);
|
2013-09-03 17:33:07 -04:00
|
|
|
int pthread_rwlockattr_destroy(pthread_rwlockattr_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_rwlockattr_getpshared */
|
2013-09-03 17:33:07 -04:00
|
|
|
int pthread_rwlockattr_init(pthread_rwlockattr_t*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_rwlockattr_setpshared */
|
2013-09-15 11:20:28 -04:00
|
|
|
pthread_t pthread_self(void);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_setcancelstate */
|
|
|
|
/* TODO: pthread_setcanceltype */
|
|
|
|
/* TODO: pthread_setconcurrency */
|
|
|
|
/* TODO: pthread_setschedparam */
|
|
|
|
/* TODO: pthread_setschedprio */
|
2014-01-13 16:33:00 -05:00
|
|
|
int pthread_setspecific(pthread_key_t, const void*);
|
2013-08-31 07:15:53 -04:00
|
|
|
/* TODO: pthread_spin_destroy */
|
|
|
|
/* TODO: pthread_spin_init */
|
|
|
|
/* TODO: pthread_spin_lock */
|
|
|
|
/* TODO: pthread_spin_trylock */
|
|
|
|
/* TODO: pthread_spin_unlock */
|
|
|
|
/* TODO: pthread_testcancel */
|
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|