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
base
inc
TThreadSlots.h
Go to the documentation of this file.
1
// @(#)root/base:$Id$
2
// Author: Philippe Canal 09/30/2011
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
#ifndef ROOT_TThreadSlots
13
#define ROOT_TThreadSlots
14
15
#include "
Rtypes.h
"
16
17
namespace
ROOT
{
18
19
enum
EThreadSlotReservation
{
20
// Describe the system wide slot pre-allocation in the TThread
21
// 'special data' storage array ; meant to be used as thread local
22
// storage. (See TThread::Tsd)
23
//
24
// Slot 0 through 19 can be used for user application
25
// Slot 20 and above are reserved for the global system
26
kMaxUserThreadSlot
= 20,
27
28
// Slot reserved by ROOT's packages.
29
kPadThreadSlot
= 20,
30
kClassThreadSlot
= 21,
31
kDirectoryThreadSlot
= 22,
32
kFileThreadSlot
= 23,
33
kPerfStatsThreadSlot
= 24,
34
35
kMaxThreadSlot
= 25
// Size of the array of thread local slots in TThread
36
};
37
}
38
39
#ifndef __CINT__
40
R__EXTERN
void
**(*gThreadTsd)(
void
*,
Int_t
);
41
#endif
42
43
#endif // ROOT_TThreadSlots
ROOT
Namespace for new ROOT classes and functions.
Definition:
StringConv.hxx:21
Rtypes.h
ROOT::EThreadSlotReservation
EThreadSlotReservation
Definition:
TThreadSlots.h:19
Int_t
int Int_t
Definition:
RtypesCore.h:41
ROOT::kPadThreadSlot
Definition:
TThreadSlots.h:29
ROOT::kMaxUserThreadSlot
Definition:
TThreadSlots.h:26
ROOT::kClassThreadSlot
Definition:
TThreadSlots.h:30
ROOT::kFileThreadSlot
Definition:
TThreadSlots.h:32
ROOT::kDirectoryThreadSlot
Definition:
TThreadSlots.h:31
R__EXTERN
#define R__EXTERN
Definition:
DllImport.h:27
ROOT::kPerfStatsThreadSlot
Definition:
TThreadSlots.h:33
ROOT::kMaxThreadSlot
Definition:
TThreadSlots.h:35