Loading [MathJax]/extensions/tex2jax.js
ROOT
6.12/07
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
k
l
n
o
p
r
s
v
w
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
core
thread
src
TWin32ThreadFactory.cxx
Go to the documentation of this file.
1
// @(#)root/thread:$Id$
2
// Author: Bertrand Bellenot 20/10/2004
3
4
/*************************************************************************
5
* Copyright (C) 1995-2004, 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
// TWin32ThreadFactory //
15
// //
16
// This is a factory for Win32 thread components. //
17
// //
18
//////////////////////////////////////////////////////////////////////////
19
20
#include "
TWin32ThreadFactory.h
"
21
#include "
TWin32Mutex.h
"
22
#include "
TWin32Condition.h
"
23
#include "
TWin32Thread.h
"
24
25
// Force creation of TWin32ThreadFactory when shared library will be loaded
26
// (don't explicitly create a TWin32ThreadFactory).
27
static
TWin32ThreadFactory
gWin32ThreadFactoryCreator
;
28
29
ClassImp
(
TWin32ThreadFactory
);
30
31
////////////////////////////////////////////////////////////////////////////////
32
/// Create Win32 thread factory. Also sets global gThreadFactory to this.
33
34
TWin32ThreadFactory::TWin32ThreadFactory
(
const
char
*
name
,
const
char
*title) :
35
TThreadFactory
(name, title)
36
{
37
gThreadFactory
=
this
;
38
}
39
40
////////////////////////////////////////////////////////////////////////////////
41
/// Return a Win32 Mutex.
42
43
TMutexImp
*
TWin32ThreadFactory::CreateMutexImp
(
Bool_t
recursive)
44
{
45
return
new
TWin32Mutex
(recursive);
46
}
47
48
////////////////////////////////////////////////////////////////////////////////
49
/// Return a Win32 thread.
50
51
TThreadImp
*
TWin32ThreadFactory::CreateThreadImp
()
52
{
53
return
new
TWin32Thread
;
54
}
55
56
////////////////////////////////////////////////////////////////////////////////
57
/// Return a Win32 condition variable.
58
59
TConditionImp
*
TWin32ThreadFactory::CreateConditionImp
(
TMutexImp
*
m
)
60
{
61
return
new
TWin32Condition
(m);
62
}
TWin32ThreadFactory.h
m
auto * m
Definition:
textangle.C:8
TWin32Thread.h
TWin32ThreadFactory::CreateThreadImp
virtual TThreadImp * CreateThreadImp()
Return a Win32 thread.
Definition:
TWin32ThreadFactory.cxx:51
TWin32ThreadFactory::CreateConditionImp
virtual TConditionImp * CreateConditionImp(TMutexImp *m)
Return a Win32 condition variable.
Definition:
TWin32ThreadFactory.cxx:59
Bool_t
bool Bool_t
Definition:
RtypesCore.h:59
gThreadFactory
R__EXTERN TThreadFactory * gThreadFactory
Definition:
TThreadFactory.h:45
TWin32Mutex.h
TWin32ThreadFactory::CreateMutexImp
virtual TMutexImp * CreateMutexImp(Bool_t recursive)
Return a Win32 Mutex.
Definition:
TWin32ThreadFactory.cxx:43
TWin32Mutex
Definition:
TWin32Mutex.h:32
TThreadFactory
Definition:
TThreadFactory.h:32
gWin32ThreadFactoryCreator
static TWin32ThreadFactory gWin32ThreadFactoryCreator
Definition:
TWin32ThreadFactory.cxx:27
TConditionImp
Definition:
TConditionImp.h:29
ClassImp
#define ClassImp(name)
Definition:
Rtypes.h:359
TWin32Thread
Definition:
TWin32Thread.h:30
TWin32ThreadFactory
Definition:
TWin32ThreadFactory.h:31
TMutexImp
Definition:
TMutexImp.h:30
TWin32Condition
Definition:
TWin32Condition.h:59
TWin32ThreadFactory::TWin32ThreadFactory
TWin32ThreadFactory(const char *name="Win32", const char *title="Win32 Thread Factory")
Create Win32 thread factory. Also sets global gThreadFactory to this.
Definition:
TWin32ThreadFactory.cxx:34
TThreadImp
Definition:
TThreadImp.h:30
TWin32Condition.h
name
char name[80]
Definition:
TGX11.cxx:109