ROSE
0.11.145.272
Toggle main menu visibility
Main Page
Related Pages
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
c
d
g
h
i
l
m
n
s
t
u
v
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
i
k
l
m
o
p
s
t
v
w
x
Enumerator
a
b
c
d
e
f
h
i
l
m
n
o
p
s
t
u
v
w
y
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
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
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Symbols
b
i
o
Files
File List
Examples
src
midend
programAnalysis
genericDataflow
genUID.h
1
#include <featureTests.h>
2
#ifdef ROSE_ENABLE_SOURCE_ANALYSIS
3
4
#ifndef GEN_UID_H
5
#define GEN_UID_H
6
7
#ifdef THREADED
8
#include "tbb/mutex.h"
9
#endif
10
11
// Generates unique unsigned long ids, with a user-specified minimum id
12
class
genUID
13
{
14
unsigned
long
curUID;
15
#ifdef THREADED
16
tbb::mutex* uidAccessM;
17
#endif
18
19
public
:
20
// minimum ID defaults to 0
21
genUID
();
22
// minimum ID will be minUID
23
genUID
(
unsigned
long
minUID);
24
25
unsigned
long
getUID();
26
};
12
class
genUID
{
…
};
27
28
#endif
29
#endif
genUID
Definition
genUID.h:13
Generated on Sun May 18 2025 21:55:20 for ROSE by
1.9.8