Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MemorySegment.h
Go to the documentation of this file.
1 #ifndef ProtectedMemory_h
2 #define ProtectedMemory_h 1
3 
4 struct MemorySegment {
5  void *start;
6  void *end;
7 };
8 
9 static struct MemorySegment memorySegments[4096];
10 static int numOfSegments = 0;
11 
12 #endif