sortix-mirror/libpthread/include/__/pthread.h

149 lines
3.2 KiB
C
Raw Normal View History

2013-08-31 11:15:53 +00: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>
__BEGIN_DECLS
#define __sortix_libpthread__ 1
typedef int __pthread_attr_t;
typedef int __pthread_barrier_t;
typedef int __pthread_barrierattr_t;
#if defined(__is_sortix_libpthread)
typedef struct
{
struct pthread_cond_elem* first;
struct pthread_cond_elem* last;
__clock_t clock;
} __pthread_cond_t;
#else
typedef struct
{
void* __pthread_first;
void* __pthread_last;
__clock_t __pthread_clock;
} __pthread_cond_t;
#endif
2013-08-31 11:15:53 +00:00
#if defined(__is_sortix_libpthread)
typedef struct
{
__clock_t clock;
} __pthread_condattr_t;
#else
typedef struct
{
__clock_t __pthread_clock;
} __pthread_condattr_t;
#endif
2013-08-31 11:15:53 +00:00
typedef __SIZE_TYPE__ __pthread_key_t;
2013-08-31 11:15:53 +00:00
#if defined(__is_sortix_libpthread)
typedef struct
{
unsigned long lock;
unsigned long type;
unsigned long owner;
unsigned long recursion;
} __pthread_mutex_t;
#else
typedef struct
{
unsigned long __pthread_lock;
unsigned long __pthread_type;
unsigned long __pthread_owner;
unsigned long __pthread_recursion;
} __pthread_mutex_t;
#endif
2013-08-31 11:15:53 +00:00
#if defined(__is_sortix_libpthread)
typedef struct
{
int type;
} __pthread_mutexattr_t;
#else
typedef struct
{
int __pthread_type;
} __pthread_mutexattr_t;
#endif
2013-08-31 11:15:53 +00:00
typedef int __pthread_once_t;
#if defined(__is_sortix_libpthread)
typedef struct
{
__pthread_cond_t reader_condition;
__pthread_cond_t writer_condition;
__pthread_mutex_t request_mutex;
unsigned long num_readers;
unsigned long num_writers;
unsigned long pending_readers;
unsigned long pending_writers;
} __pthread_rwlock_t;
#else
typedef struct
{
__pthread_cond_t __pthread_reader_condition;
__pthread_cond_t __pthread_writer_condition;
__pthread_mutex_t __pthread_request_mutex;
unsigned long __pthread_num_readers;
unsigned long __pthread_num_writers;
unsigned long __pthread_pending_readers;
unsigned long __pthread_pending_writers;
} __pthread_rwlock_t;
#endif
2013-08-31 11:15:53 +00:00
#if defined(__is_sortix_libpthread)
typedef struct
{
} __pthread_rwlockattr_t;
#else
typedef struct
{
} __pthread_rwlockattr_t;
#endif
2013-08-31 11:15:53 +00:00
typedef int __pthread_spinlock_t;
#if defined(__is_sortix_libpthread)
typedef struct pthread* __pthread_t;
#else
typedef struct __pthread* __pthread_t;
#endif
__END_DECLS
#endif