thredo16.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 123 行
C
123 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include "variety.h"
#define INCL_DOSSEMAPHORES
#define INCL_DOSPROCESS
#include <wos2.h>
#include <dos.h>
#include <process.h>
#include <string.h>
#include "exitwmsg.h"
#include "stacklow.h"
#include "sigtab.h"
#include "thread.h"
#include "rtdata.h"
#include "extfunc.h"
typedef void (_WCFAR thread_fn)(void _WCFAR *);
#if defined(_M_IX86)
#pragma aux (__outside_CLIB) thread_fn;
#endif
extern unsigned __MaxThreads;
extern int _WCFAR *_threadid; // OS/2 1.x
static HSEM data_sem = 0;
static thread_fn *Routine;
static void _WCFAR *Argument;
static void _WCFAR *StackBottom;
static void _WCFAR begin_thread_helper() {
/**************************************/
thread_fn *_rtn;
void _WCFAR *_arg;
thread_data my_thread_data;
if( *_threadid > __MaxThreads ) return;
/* save a copy of the global variables so we can clear the semaphore */
_rtn = Routine;
_arg = Argument;
memset( &my_thread_data, 0, sizeof( thread_data ) );
my_thread_data.__randnext = 1;
__ThreadData[*_threadid] = &my_thread_data;
_STACKLOW = FP_OFF( StackBottom );
DosSemClear( &data_sem );
(*_rtn)( _arg );
_endthread();
}
_WCRTLINK int _WCFAR _beginthread( thread_fn *start_address,
void _WCFAR *stack_bottom,
unsigned stack_size,
void _WCFAR *arglist ) {
/*****************************************************/
TID tid;
APIRET rc;
DosSemRequest( &data_sem, -1L );
Routine = start_address;
Argument = arglist;
StackBottom = stack_bottom;
rc = DosCreateThread( begin_thread_helper, (PTID)&tid,
(char *)stack_bottom + stack_size );
if( rc != 0 ) {
DosSemClear( &data_sem );
return( -1 );
}
if( tid > __MaxThreads ) {
return( -1 );
}
return( tid );
}
void _WCFAR *__chkstack( void _WCFAR *ptr ) {
/***************************************/
if( FP_SEG( ptr ) != FP_SEG( &Routine ) ) {
__fatal_runtime_error( "thread stack not in DGROUP", 1 );
}
return( ptr );
}
_WCRTLINK void _WCFAR _endthread() {
/**********************/
__ThreadData[*_threadid] = NULL;
DosExit( EXIT_THREAD, 0 );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?