pthreadalias.h

Go to the documentation of this file.
00001 /*
00002 * ==============================================================================
00003 *  Name        : pthreadalias.h
00004 *  Part of     : pthread
00005 *  Interface   : POSIX, pthread
00006 *  Description : 
00007 *  Version     : 
00008 
00009 Copyright © 2005-2006 Nokia Corporation
00010 All rights reserved.
00011 
00012 Redistribution and use in source and binary forms, with or without 
00013 modification, are permitted provided that the following conditions are met:
00014  * Redistributions of source code must retain the above copyright notice, this 
00015    list of conditions and the following disclaimer. 
00016  * Redistributions in binary form must reproduce the above copyright notice, 
00017    this list of conditions and the following disclaimer in the documentation 
00018    and/or other materials provided with the distribution. 
00019  * Neither the name of the <ORGANIZATION> nor the names of its contributors 
00020    may be used to endorse or promote products derived from this software 
00021    without specific prior written permission. 
00022    
00023 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
00024 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
00025 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
00026 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
00027 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
00028 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
00029 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
00030 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
00031 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
00032 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00033 * ==============================================================================
00034 */
00035 #ifndef  PTHREADALIAS_H
00036 #define  PTHREADALIAS_H
00037 
00038 #include <_ansi.h>
00039 
00040 #define _pthread_create pthread_create
00041 #define _pthread_self pthread_self
00042 #define _pthread_equal pthread_equal
00043 #define _pthread_join pthread_join
00044 #define _pthread_detach pthread_detach
00045 #define _pthread_exit pthread_exit
00046 #define _pthread_attr_init pthread_attr_init
00047 #define _pthread_attr_destroy pthread_attr_destroy
00048 #define _pthread_attr_getdetachstate pthread_attr_getdetachstate
00049 #define _pthread_attr_setdetachstate pthread_attr_setdetachstate
00050 #define _pthread_attr_getstacksize pthread_attr_getstacksize
00051 #define _pthread_attr_setstacksize pthread_attr_setstacksize
00052 #define _pthread_once pthread_once 
00053 #define _pthread_mutexattr_init pthread_mutexattr_init
00054 #define _pthread_mutexattr_destroy pthread_mutexattr_destroy
00055 #define _pthread_mutexattr_getpshared pthread_mutexattr_getpshared
00056 #define _pthread_mutexattr_setpshared pthread_mutexattr_setpshared
00057 #define _pthread_mutexattr_gettype pthread_mutexattr_gettype
00058 #define _pthread_mutexattr_settype pthread_mutexattr_settype
00059 #define _pthread_mutex_init pthread_mutex_init
00060 #define _pthread_mutex_destroy pthread_mutex_destroy
00061 #define _pthread_mutex_lock pthread_mutex_lock
00062 #define _pthread_mutex_timedlock pthread_mutex_timedlock
00063 #define _pthread_mutex_trylock pthread_mutex_trylock
00064 #define _pthread_mutex_unlock pthread_mutex_unlock
00065 #define _pthread_condattr_init pthread_condattr_init
00066 #define _pthread_condattr_destroy pthread_condattr_destroy
00067 #define _pthread_cond_init pthread_cond_init
00068 #define _pthread_cond_destroy pthread_cond_destroy
00069 #define _pthread_cond_timedwait pthread_cond_timedwait
00070 #define _pthread_cond_wait pthread_cond_wait
00071 #define _pthread_cond_signal pthread_cond_signal
00072 #define _pthread_cond_broadcast pthread_cond_broadcast
00073 #define _pthread_key_create pthread_key_create
00074 #define _pthread_key_delete pthread_key_delete
00075 #define _pthread_setspecific pthread_setspecific
00076 #define _pthread_getspecific pthread_getspecific
00077 #define _pthread_attr_getscope pthread_attr_getscope
00078 #define _pthread_attr_setscope pthread_attr_setscope
00079 #define _pthread_attr_setschedpolicy pthread_attr_setschedpolicy
00080 #define _pthread_attr_getschedpolicy pthread_attr_getschedpolicy
00081 #define _pthread_attr_getschedparam pthread_attr_getschedparam
00082 #define _pthread_attr_setschedparam pthread_attr_setschedparam 
00083 #define _pthread_getschedparam pthread_getschedparam 
00084 #define _pthread_setschedparam pthread_setschedparam 
00085 
00086 #endif /* PTHREADALIAS_H */
00087 

Copyright © Nokia Corporation 2001-2008
Back to top