8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-30 09:23:09 +01:00
firebird-mirror/src/jrd/thd.cpp

227 lines
4.8 KiB
C++
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: JRD Access Method
* MODULE: thd.cpp
2001-05-23 15:26:42 +02: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-29 03:45:09 +01:00
*
* 2002.10.28 Sean Leyne - Completed removal of obsolete "DGUX" port
*
2002-10-30 07:40:58 +01:00
* 2002.10.29 Sean Leyne - Removed obsolete "Netware" port
*
2001-05-23 15:26:42 +02:00
*/
#include "firebird.h"
2004-04-29 00:43:34 +02:00
#include <stdio.h>
2001-05-23 15:26:42 +02:00
#include <errno.h>
#include "../jrd/common.h"
2008-01-16 11:25:04 +01:00
#include "../jrd/ThreadStart.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/thd.h"
#include "../jrd/isc.h"
#include "../jrd/os/thd_priority.h"
2001-05-23 15:26:42 +02:00
#include "../jrd/gds_proto.h"
#include "../jrd/isc_s_proto.h"
#include "../jrd/gdsassert.h"
#include "../common/classes/fb_tls.h"
2008-01-16 11:25:04 +01:00
#include "../common/classes/locks.h"
2001-05-23 15:26:42 +02:00
#ifdef WIN_NT
#include <process.h>
#include <windows.h>
#endif
#ifdef HAVE_UNISTD_H
2001-05-23 15:26:42 +02:00
#include <unistd.h>
#endif
#ifdef SOLARIS_MT
2002-11-01 14:21:17 +01:00
#include <thread.h>
#include <signal.h>
#endif
2001-05-23 15:26:42 +02:00
2008-01-16 11:25:04 +01:00
FB_THREAD_ID getThreadId()
2001-05-23 15:26:42 +02:00
{
/**************************************
*
2008-01-16 11:25:04 +01:00
* T H D _ g e t _ t h r e a d _ i d
2001-05-23 15:26:42 +02:00
*
**************************************
*
* Functional description
2008-01-16 11:25:04 +01:00
* Get platform's notion of a thread ID.
2001-05-23 15:26:42 +02:00
*
**************************************/
2008-01-16 11:25:04 +01:00
FB_THREAD_ID id = 1;
#ifdef WIN_NT
id = GetCurrentThreadId();
#endif
#ifdef SOLARIS_MT
id = thr_self();
#endif
#ifdef USE_POSIX_THREADS
2001-05-23 15:26:42 +02:00
2008-01-16 11:25:04 +01:00
// The following is just a temp. decision.
#ifdef HP10
2001-05-23 15:26:42 +02:00
2008-01-16 11:25:04 +01:00
id = (FB_THREAD_ID) (pthread_self().field1);
2001-05-23 15:26:42 +02:00
2008-01-16 11:25:04 +01:00
#else
2001-05-23 15:26:42 +02:00
2008-01-16 11:25:04 +01:00
id = (FB_THREAD_ID) pthread_self();
#endif // HP10
#endif // USE_POSIX_THREADS
return id;
2001-05-23 15:26:42 +02:00
}
int THD_rec_mutex_lock(REC_MUTX_T * rec_mutex)
{
/**************************************
*
2008-01-16 11:25:04 +01:00
* T H D _ r e c _ m u t e x _ l o c k
2001-05-23 15:26:42 +02:00
*
**************************************
*
* Functional description
*
**************************************/
2008-01-16 11:25:04 +01:00
if (rec_mutex->rec_mutx_id == getThreadId())
{
2001-05-23 15:26:42 +02:00
rec_mutex->rec_mutx_count++;
}
else
{
try
{
rec_mutex->rec_mutx_mtx.enter();
}
catch (const Firebird::system_call_failed& e)
{
return e.getErrorCode();
}
2008-01-16 11:25:04 +01:00
rec_mutex->rec_mutx_id = getThreadId();
2001-05-23 15:26:42 +02:00
rec_mutex->rec_mutx_count = 1;
}
return 0;
}
int THD_rec_mutex_unlock(REC_MUTX_T * rec_mutex)
{
/**************************************
*
2008-01-16 11:25:04 +01:00
* T H D _ r e c _ m u t e x _ u n l o c k
2001-05-23 15:26:42 +02:00
*
**************************************
*
* Functional description
*
**************************************/
2008-01-16 11:25:04 +01:00
if (rec_mutex->rec_mutx_id != getThreadId())
return FB_FAILURE;
2001-05-23 15:26:42 +02:00
rec_mutex->rec_mutx_count--;
if (rec_mutex->rec_mutx_count == 0)
{
2001-05-23 15:26:42 +02:00
rec_mutex->rec_mutx_id = 0;
try
{
rec_mutex->rec_mutx_mtx.leave();
}
catch (const Firebird::system_call_failed& e)
{
return e.getErrorCode();
}
2001-05-23 15:26:42 +02:00
}
return 0;
2001-05-23 15:26:42 +02:00
}
void THD_sleep(ULONG milliseconds)
{
/**************************************
*
* T H D _ s l e e p
*
**************************************
*
* Functional description
* Thread sleeps for requested number
* of milliseconds.
*
**************************************/
#ifdef WIN_NT
SleepEx(milliseconds, FALSE);
#else
event_t timer;
event_t* timer_ptr = &timer;
2001-05-23 15:26:42 +02:00
ISC_event_init(&timer, 0, 0);
2008-01-16 11:25:04 +01:00
const SLONG count = ISC_event_clear(&timer);
2001-05-23 15:26:42 +02:00
2008-01-16 11:25:04 +01:00
ISC_event_wait(1, &timer_ptr, &count, milliseconds * 1000);
2001-05-23 15:26:42 +02:00
ISC_event_fini(&timer);
2006-05-01 06:12:30 +02:00
#endif // WIN_NT
2001-05-23 15:26:42 +02:00
}
void THD_yield(void)
{
/**************************************
*
* T H D _ y i e l d
*
**************************************
*
* Functional description
* Thread relinquishes the processor.
*
**************************************/
#ifdef USE_POSIX_THREADS
2001-05-23 15:26:42 +02:00
/* use sched_yield() instead of pthread_yield(). Because pthread_yield()
is not part of the (final) POSIX 1003.1c standard. Several drafts of
the standard contained pthread_yield(), but then the POSIX guys
discovered it was redundant with sched_yield() and dropped it.
So, just use sched_yield() instead. POSIX systems on which
sched_yield() is available define _POSIX_PRIORITY_SCHEDULING
2001-07-12 07:46:06 +02:00
in <unistd.h>. Darwin defined _POSIX_THREAD_PRIORITY_SCHEDULING
instead of _POSIX_PRIORITY_SCHEDULING.
2001-05-23 15:26:42 +02:00
*/
2001-07-12 07:46:06 +02:00
#if (defined _POSIX_PRIORITY_SCHEDULING || defined _POSIX_THREAD_PRIORITY_SCHEDULING)
2001-05-23 15:26:42 +02:00
sched_yield();
#else
pthread_yield();
2006-05-02 02:25:11 +02:00
#endif // _POSIX_PRIORITY_SCHEDULING
2001-05-23 15:26:42 +02:00
#endif
2004-06-15 11:02:14 +02:00
#ifdef SOLARIS_MT
2001-05-23 15:26:42 +02:00
thr_yield();
#endif
#ifdef WIN_NT
SleepEx(0, FALSE);
2001-05-23 15:26:42 +02:00
#endif
}