2008-03-31 19:10:00 +04:00
|
|
|
/*
|
2009-11-10 00:33:35 +03:00
|
|
|
* Copyright 2003-2009, Axel Dörfler, axeld@pinc-software.de.
|
2007-09-22 20:30:22 +04:00
|
|
|
* Copyright 2007, Ryan Leavengood, leavengood@gmail.com.
|
|
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2008-03-31 19:10:00 +04:00
|
|
|
#ifndef _PTHREAD_PRIVATE_H_
|
|
|
|
#define _PTHREAD_PRIVATE_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <pthread.h>
|
2003-04-20 22:48:54 +04:00
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
|
2011-06-12 04:00:23 +04:00
|
|
|
|
|
|
|
// _pthread_thread::flags values
|
|
|
|
#define THREAD_DETACHED 0x01
|
|
|
|
#define THREAD_DEAD 0x02
|
|
|
|
#define THREAD_CANCELED 0x04
|
|
|
|
#define THREAD_CANCEL_ENABLED 0x08
|
|
|
|
#define THREAD_CANCEL_ASYNCHRONOUS 0x10
|
|
|
|
|
|
|
|
|
|
|
|
struct thread_creation_attributes;
|
|
|
|
|
2003-04-20 22:48:54 +04:00
|
|
|
// The public *_t types are only pointers to these structures
|
|
|
|
// This way, we are completely free to change them, which might be
|
|
|
|
// necessary in the future (not only due to the incomplete implementation
|
|
|
|
// at this point).
|
|
|
|
|
2007-09-22 20:30:22 +04:00
|
|
|
typedef struct _pthread_condattr {
|
|
|
|
bool process_shared;
|
|
|
|
} pthread_condattr;
|
|
|
|
|
2003-04-20 22:48:54 +04:00
|
|
|
typedef struct _pthread_mutexattr {
|
|
|
|
int32 type;
|
|
|
|
bool process_shared;
|
|
|
|
} pthread_mutexattr;
|
|
|
|
|
2006-06-20 15:05:58 +04:00
|
|
|
typedef struct _pthread_attr {
|
|
|
|
int32 detach_state;
|
|
|
|
int32 sched_priority;
|
2008-05-09 05:36:49 +04:00
|
|
|
size_t stack_size;
|
2012-04-01 12:37:42 +04:00
|
|
|
size_t guard_size;
|
2006-06-20 15:05:58 +04:00
|
|
|
} pthread_attr;
|
|
|
|
|
2008-05-21 00:43:28 +04:00
|
|
|
typedef struct _pthread_rwlockattr {
|
|
|
|
uint32_t flags;
|
|
|
|
} pthread_rwlockattr;
|
|
|
|
|
2008-04-17 17:44:39 +04:00
|
|
|
typedef void (*pthread_key_destructor)(void *data);
|
|
|
|
|
|
|
|
struct pthread_key {
|
|
|
|
vint32 sequence;
|
|
|
|
pthread_key_destructor destructor;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pthread_key_data {
|
|
|
|
vint32 sequence;
|
|
|
|
void *value;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PTHREAD_UNUSED_SEQUENCE 0
|
2006-06-21 18:07:34 +04:00
|
|
|
|
2008-05-21 00:43:28 +04:00
|
|
|
typedef struct _pthread_thread {
|
|
|
|
thread_id id;
|
|
|
|
int32 flags;
|
2008-03-31 19:10:00 +04:00
|
|
|
void *(*entry)(void*);
|
|
|
|
void *entry_argument;
|
2008-05-21 00:43:28 +04:00
|
|
|
void *exit_value;
|
2008-04-17 17:44:39 +04:00
|
|
|
struct pthread_key_data specific[PTHREAD_KEYS_MAX];
|
2008-03-31 19:10:00 +04:00
|
|
|
struct __pthread_cleanup_handler *cleanup_handlers;
|
2008-05-21 00:43:28 +04:00
|
|
|
} pthread_thread;
|
2008-03-31 19:10:00 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-05-21 00:43:28 +04:00
|
|
|
void __pthread_key_call_destructors(pthread_thread *thread);
|
2009-11-10 00:33:35 +03:00
|
|
|
void __pthread_destroy_thread(void);
|
2011-06-12 04:00:23 +04:00
|
|
|
pthread_thread *__allocate_pthread(void* (*entry)(void*), void *data);
|
|
|
|
void __init_pthread(pthread_thread* thread, void* (*entry)(void*), void* data);
|
|
|
|
status_t __pthread_init_creation_attributes(
|
|
|
|
const pthread_attr_t* pthreadAttributes, pthread_t thread,
|
|
|
|
status_t (*entryFunction)(void*, void*), void* argument1,
|
|
|
|
void* argument2, const char* name,
|
|
|
|
struct thread_creation_attributes* attributes);
|
2008-03-31 19:10:00 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2006-06-21 18:07:34 +04:00
|
|
|
|
2003-04-20 22:48:54 +04:00
|
|
|
#endif /* _PTHREAD_PRIVATE_H_ */
|