Shadowrun: Awakened 29 September 2011 - Build 871
pthread.cpp
Go to the documentation of this file.
00001 /*
00002     Copyright 2005-2010 Intel Corporation.  All Rights Reserved.
00003 
00004     This file is part of Threading Building Blocks.
00005 
00006     Threading Building Blocks is free software; you can redistribute it
00007     and/or modify it under the terms of the GNU General Public License
00008     version 2 as published by the Free Software Foundation.
00009 
00010     Threading Building Blocks is distributed in the hope that it will be
00011     useful, but WITHOUT ANY WARRANTY; without even the implied warranty
00012     of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013     GNU General Public License for more details.
00014 
00015     You should have received a copy of the GNU General Public License
00016     along with Threading Building Blocks; if not, write to the Free Software
00017     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00018 
00019     As a special exception, you may use this file as part of a free software
00020     library without restriction.  Specifically, if other files instantiate
00021     templates or use macros or inline functions from this file, or you compile
00022     this file and link it with other files to produce an executable, this
00023     file does not by itself cause the resulting executable to be covered by
00024     the GNU General Public License.  This exception does not however
00025     invalidate any other reasons why the executable file might be covered by
00026     the GNU General Public License.
00027 */
00028 
00029 /*
00030     The original source for this example is
00031     Copyright (c) 1994-2008 John E. Stone
00032     All rights reserved.
00033 
00034     Redistribution and use in source and binary forms, with or without
00035     modification, are permitted provided that the following conditions
00036     are met:
00037     1. Redistributions of source code must retain the above copyright
00038        notice, this list of conditions and the following disclaimer.
00039     2. Redistributions in binary form must reproduce the above copyright
00040        notice, this list of conditions and the following disclaimer in the
00041        documentation and/or other materials provided with the distribution.
00042     3. The name of the author may not be used to endorse or promote products
00043        derived from this software without specific prior written permission.
00044 
00045     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
00046     OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00047     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00048     ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
00049     DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00050     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
00051     OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00052     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00053     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
00054     OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00055     SUCH DAMAGE.
00056 */
00057 
00058 #ifdef EMULATE_PTHREADS
00059 
00060 #include <assert.h>
00061 #include "pthread.h"
00062 
00063 /*
00064     Basics
00065 */
00066 
00067 int
00068 pthread_create (pthread_t *thread, pthread_attr_t *attr, void *(*start_routine) (void *), void *arg)
00069 {
00070     pthread_t th;
00071 
00072     if (thread == NULL) return EINVAL;
00073     *thread = NULL;
00074 
00075     if (start_routine == NULL) return EINVAL;
00076 
00077     th = (pthread_t) malloc (sizeof (pthread_s));
00078     memset (th, 0, sizeof (pthread_s));
00079 
00080     th->winthread_handle = CreateThread (
00081         NULL,
00082         0,
00083         (LPTHREAD_START_ROUTINE) start_routine,
00084         arg,
00085         0,
00086         &th->winthread_id);
00087     if (th->winthread_handle == NULL) return EAGAIN;  /*  GetLastError()  */
00088 
00089     *thread = th;
00090     return 0;
00091 }
00092 
00093 int
00094 pthread_join (pthread_t th, void **thread_return)
00095 {
00096     BOOL b_ret;
00097     DWORD dw_ret;
00098 
00099     if (thread_return) *thread_return = NULL;
00100 
00101     if ((th == NULL) || (th->winthread_handle == NULL)) return EINVAL;
00102 
00103     dw_ret = WaitForSingleObject (th->winthread_handle, INFINITE);
00104     if (dw_ret != WAIT_OBJECT_0) return ERROR_PTHREAD;  /*  dw_ret == WAIT_FAILED; GetLastError()  */
00105 
00106     if (thread_return) {
00107         BOOL e_ret;
00108         DWORD exit_val;
00109         e_ret = GetExitCodeThread (th->winthread_handle, &exit_val);
00110         if (!e_ret) return ERROR_PTHREAD;  /*  GetLastError()  */
00111         *thread_return = (void *)(size_t) exit_val;
00112     }
00113 
00114     b_ret = CloseHandle (th->winthread_handle);
00115     if (!b_ret) return ERROR_PTHREAD;  /*  GetLastError()  */
00116     memset (th, 0, sizeof (pthread_s));
00117     free (th);
00118     th = NULL;
00119 
00120     return 0;
00121 }
00122 
00123 void
00124 pthread_exit (void *retval)
00125 {
00126     /*  specific to PTHREAD_TO_WINTHREAD  */
00127 
00128     ExitThread ((DWORD) ((size_t) retval));  /*  thread becomes signalled so its death can be waited upon  */
00129     /*NOTREACHED*/
00130     assert (0); return;  /*  void fnc; can't return an error code  */
00131 }
00132 
00133 /*
00134     Mutex
00135 */
00136 
00137 int
00138 pthread_mutex_init (pthread_mutex_t *mutex, pthread_mutexattr_t *mutex_attr)
00139 {
00140     InitializeCriticalSection (&mutex->critsec);
00141     return 0;
00142 }
00143 
00144 int
00145 pthread_mutex_destroy (pthread_mutex_t *mutex)
00146 {
00147     return 0;
00148 }
00149 
00150 int
00151 pthread_mutex_lock (pthread_mutex_t *mutex)
00152 {
00153     EnterCriticalSection (&mutex->critsec);
00154     return 0;
00155 }
00156 
00157 int
00158 pthread_mutex_unlock (pthread_mutex_t *mutex)
00159 {
00160     LeaveCriticalSection (&mutex->critsec);
00161     return 0;
00162 }
00163 
00164 #endif  /*  EMULATE_PTHREADS  */

Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.

GNU Lesser General Public License 3 Sourceforge.net