/* * PROGRAM: JRD Access Method * MODULE: ThreadData.cpp * 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 * * Alex Peshkov */ #include "firebird.h" #include #include #include "../jrd/common.h" #include "../jrd/ThreadData.h" #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 #include #endif #ifdef HAVE_UNISTD_H #include #endif #if defined SOLARIS || defined AIX #include #endif #ifdef SOLARIS #include #include #endif #include "../common/classes/locks.h" #include "../common/classes/rwlock.h" namespace { TLS_DECLARE (ThreadData*, tData); } ThreadData* ThreadData::getSpecific() { /************************************** * * 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); }