RaftLib  0.3a
C++ Stream Processing Template Library
getrandom.h
1 #ifndef __GETRANDOM_H__
2 #define __GETRANDOM_H__
3 
4 #include <stdint.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 void init();
11 
12 uint32_t getUniformRandom();
13 
14 uint32_t getRandom();
15 
16 uint64_t getUniformRandomInRange(uint64_t range);
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif /* END __GETRANDOM_H__ */
virtual void init()
Definition: schedule.cpp:21