ROOT
master
Reference Guide
Loading...
Searching...
No Matches
TPosixThreadFactory.cxx
Go to the documentation of this file.
1
// @(#)root/thread:$Id$
2
// Author: Fons Rademakers 01/07/97
3
4
/*************************************************************************
5
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6
* All rights reserved. *
7
* *
8
* For the licensing terms see $ROOTSYS/LICENSE. *
9
* For the list of contributors see $ROOTSYS/README/CREDITS. *
10
*************************************************************************/
11
12
//////////////////////////////////////////////////////////////////////////
13
// //
14
// TPosixThreadFactory //
15
// //
16
// This is a factory for Posix thread components. //
17
// //
18
//////////////////////////////////////////////////////////////////////////
19
20
#include "
TPosixThreadFactory.h
"
21
#include "
TPosixMutex.h
"
22
#include "
TPosixCondition.h
"
23
#include "
TPosixThread.h
"
24
25
// Force creation of TPosixThreadFactory when shared library will be loaded
26
// (don't explicitly create a TPosixThreadFactory).
27
static
TPosixThreadFactory
gPosixThreadFactoryCreator
;
28
29
30
////////////////////////////////////////////////////////////////////////////////
31
/// Create Posix thread factory. Also sets global gThreadFactory to this.
32
33
TPosixThreadFactory::TPosixThreadFactory
(
const
char
*
name
,
const
char
*title) :
34
TThreadFactory
(
name
, title)
35
{
36
gThreadFactory
=
this
;
37
}
38
39
////////////////////////////////////////////////////////////////////////////////
40
/// Return a Posix Mutex.
41
42
TMutexImp
*
TPosixThreadFactory::CreateMutexImp
(
Bool_t
recursive
=
kFALSE
)
43
{
44
return
new
TPosixMutex
(
recursive
);
45
}
46
47
////////////////////////////////////////////////////////////////////////////////
48
/// Return a Posix thread.
49
50
TThreadImp
*
TPosixThreadFactory::CreateThreadImp
()
51
{
52
return
new
TPosixThread
;
53
}
54
55
////////////////////////////////////////////////////////////////////////////////
56
/// Return a Posix condition variable.
57
58
TConditionImp
*
TPosixThreadFactory::CreateConditionImp
(
TMutexImp
*
m
)
59
{
60
return
new
TPosixCondition
(
m
);
61
}
kFALSE
constexpr Bool_t kFALSE
Definition
RtypesCore.h:108
name
char name[80]
Definition
TGX11.cxx:110
TPosixCondition.h
TPosixMutex.h
gPosixThreadFactoryCreator
static TPosixThreadFactory gPosixThreadFactoryCreator
Definition
TPosixThreadFactory.cxx:27
TPosixThreadFactory.h
TPosixThread.h
gThreadFactory
R__EXTERN TThreadFactory * gThreadFactory
Definition
TThreadFactory.h:45
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
TConditionImp
Definition
TConditionImp.h:26
TMutexImp
Definition
TMutexImp.h:27
TPosixCondition
Definition
TPosixCondition.h:33
TPosixMutex
Definition
TPosixMutex.h:28
TPosixThreadFactory
Definition
TPosixThreadFactory.h:31
TPosixThreadFactory::TPosixThreadFactory
TPosixThreadFactory(const char *name="Posix", const char *title="Posix Thread Factory")
Create Posix thread factory. Also sets global gThreadFactory to this.
Definition
TPosixThreadFactory.cxx:33
TPosixThreadFactory::CreateThreadImp
TThreadImp * CreateThreadImp() override
Return a Posix thread.
Definition
TPosixThreadFactory.cxx:50
TPosixThreadFactory::CreateMutexImp
TMutexImp * CreateMutexImp(Bool_t recursive) override
Return a Posix Mutex.
Definition
TPosixThreadFactory.cxx:42
TPosixThreadFactory::CreateConditionImp
TConditionImp * CreateConditionImp(TMutexImp *m) override
Return a Posix condition variable.
Definition
TPosixThreadFactory.cxx:58
TPosixThread
Definition
TPosixThread.h:33
TThreadFactory
Definition
TThreadFactory.h:32
TThreadImp
Definition
TThreadImp.h:31
bool
m
TMarker m
Definition
textangle.C:8
core
thread
src
TPosixThreadFactory.cxx
ROOT master - Reference Guide Generated on Sun Sep 21 2025 15:07:46 (GVA Time) using Doxygen 1.10.0