2005-03-01 16:49:10 +01:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Access Method
|
2005-03-04 01:01:42 +01:00
|
|
|
* MODULE: ThreadData.cpp
|
2005-03-01 16:49:10 +01:00
|
|
|
* DESCRIPTION: Thread support routines
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy
|
|
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code was created by Inprise Corporation
|
|
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
|
|
* Copyright (C) Inprise Corporation.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
|
|
|
*
|
|
|
|
* 2002.10.28 Sean Leyne - Completed removal of obsolete "DGUX" port
|
|
|
|
*
|
|
|
|
* 2002.10.29 Sean Leyne - Removed obsolete "Netware" port
|
|
|
|
*
|
2008-01-16 11:17:51 +01:00
|
|
|
* Alex Peshkov
|
2005-03-01 16:49:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "firebird.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "../jrd/common.h"
|
2008-01-16 11:17:51 +01:00
|
|
|
#include "../jrd/ThreadData.h"
|
2005-03-01 16:49:10 +01:00
|
|
|
#include "../jrd/gds_proto.h"
|
|
|
|
#include "../jrd/isc_s_proto.h"
|
|
|
|
#include "../jrd/gdsassert.h"
|
|
|
|
#include "../common/classes/fb_tls.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef WIN_NT
|
|
|
|
#include <process.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-10-30 10:33:55 +01:00
|
|
|
#if defined SOLARIS || defined AIX
|
2008-10-30 10:43:37 +01:00
|
|
|
#include <sched.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SOLARIS
|
2005-03-01 16:49:10 +01:00
|
|
|
#include <thread.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "../common/classes/locks.h"
|
|
|
|
#include "../common/classes/rwlock.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
TLS_DECLARE (ThreadData*, tData);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-14 12:10:48 +01:00
|
|
|
ThreadData* ThreadData::getSpecific()
|
2005-03-01 16:49:10 +01:00
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* T H D _ g e t _ s p e c i f i c
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
* Gets thread specific data and returns
|
|
|
|
* a pointer to it.
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
return TLS_GET(tData);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ThreadData::putSpecific()
|
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* T H D _ p u t _ s p e c i f i c
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
|
|
|
|
threadDataPriorContext = TLS_GET(tData);
|
|
|
|
TLS_SET(tData, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ThreadData::restoreSpecific()
|
|
|
|
{
|
|
|
|
/**************************************
|
|
|
|
*
|
|
|
|
* T H D _ r e s t o r e _ s p e c i f i c
|
|
|
|
*
|
|
|
|
**************************************
|
|
|
|
*
|
|
|
|
* Functional description
|
|
|
|
*
|
|
|
|
**************************************/
|
|
|
|
ThreadData* current_context = getSpecific();
|
|
|
|
|
|
|
|
TLS_SET(tData, current_context->threadDataPriorContext);
|
|
|
|
}
|