* The pthread_thread structure is now allocated for all threads.
* Therefore, all pthread functions should now work fine on all threads. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33967 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
/*
|
||||
* Copyright 2003-2009, Axel Dörfler, [email protected].
|
||||
* Copyright 2007, Ryan Leavengood, [email protected].
|
||||
* All rights reserved. Distributed under the terms of the MIT License.
|
||||
*/
|
||||
#ifndef _PTHREAD_PRIVATE_H_
|
||||
#define _PTHREAD_PRIVATE_H_
|
||||
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
#include <OS.h>
|
||||
|
||||
// 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).
|
||||
|
||||
typedef struct _pthread_condattr {
|
||||
bool process_shared;
|
||||
} pthread_condattr;
|
||||
|
||||
typedef struct _pthread_mutexattr {
|
||||
int32 type;
|
||||
bool process_shared;
|
||||
} pthread_mutexattr;
|
||||
|
||||
typedef struct _pthread_attr {
|
||||
int32 detach_state;
|
||||
int32 sched_priority;
|
||||
size_t stack_size;
|
||||
} pthread_attr;
|
||||
|
||||
typedef struct _pthread_rwlockattr {
|
||||
uint32_t flags;
|
||||
} pthread_rwlockattr;
|
||||
|
||||
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
|
||||
|
||||
typedef struct _pthread_thread {
|
||||
thread_id id;
|
||||
int32 flags;
|
||||
void *(*entry)(void*);
|
||||
void *entry_argument;
|
||||
void *exit_value;
|
||||
int cancel_state;
|
||||
int cancel_type;
|
||||
bool cancelled;
|
||||
struct pthread_key_data specific[PTHREAD_KEYS_MAX];
|
||||
struct __pthread_cleanup_handler *cleanup_handlers;
|
||||
} pthread_thread;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void __pthread_key_call_destructors(pthread_thread *thread);
|
||||
void __pthread_destroy_thread(void);
|
||||
pthread_thread *__allocate_pthread(void *data);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _PTHREAD_PRIVATE_H_ */
|
||||
@@ -1,10 +1,11 @@
|
||||
/*
|
||||
** Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
|
||||
** Distributed under the terms of the OpenBeOS License.
|
||||
*/
|
||||
/*
|
||||
* Copyright 2003-2009, Axel Dörfler, [email protected].
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
#ifndef _KERNEL_TLS_H
|
||||
#define _KERNEL_TLS_H
|
||||
|
||||
|
||||
#include <support/TLS.h>
|
||||
|
||||
|
||||
@@ -18,6 +19,7 @@ enum {
|
||||
TLS_ERRNO_SLOT,
|
||||
TLS_ON_EXIT_THREAD_SLOT,
|
||||
TLS_USER_THREAD_SLOT,
|
||||
TLS_PTHREAD_SLOT,
|
||||
|
||||
// Note: these entries can safely be changed between
|
||||
// releases; 3rd party code always calls tls_allocate()
|
||||
|
||||
Reference in New Issue
Block a user