spawn.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 92 行
C
92 行
/****************************************************************************
*
* 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!
*
****************************************************************************/
//
// SPAWN : Spawn() and Suicide()
//
#if defined( __WINDOWS__ ) && !defined( __386__ )
#include <windows.h>
#else
#include <setjmp.h>
#endif
#include <stdlib.h>
#if defined( __WINDOWS__ ) && !defined( __386__ )
#define __setjmp Catch
#define __longjmp Throw
#define __jmp_buf CATCHBUF
#else
#define __setjmp setjmp
#define __longjmp longjmp
#define __jmp_buf jmp_buf
#endif
#if defined( __MT__ )
#include "fthread.h"
#define __SpawnStack (*(__jmp_buf **)&(__FTHREADDATAPTR->__SpawnStack))
#else
static __jmp_buf *SpawnStack = { NULL };
#define __SpawnStack SpawnStack
#endif
int Spawn( void (*fn)( void ) ) {
//=============================
__jmp_buf *save_env;
__jmp_buf env;
int status;
save_env = __SpawnStack;
__SpawnStack = &env;
status = __setjmp( env );
if( status == 0 ) {
(*fn)();
}
__SpawnStack = save_env;
return( status );
}
void Suicide( void ) {
//=================
if( __SpawnStack == NULL ) exit( -1 );
__longjmp( *__SpawnStack, 1 );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?