2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Name : pthreadtypes.h
16 * Part of : PThread library
17 * Exported thread data structures
24 #ifndef PTHREADTYPES_H
25 #define PTHREADTYPES_H
27 // size of pthread_attr
28 #define _TOTALSIZEOF_PTHREAD_ATTR_T 32
30 typedef unsigned int pthread_t;
34 char totalSize[_TOTALSIZEOF_PTHREAD_ATTR_T];
37 /* Keys for thread-specific data */
38 typedef unsigned int pthread_key_t;
40 #endif //PTHREADTYPES_H