ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/Development/ray/src/rt/RcontribSimulManager.cpp
(Generate patch)

Comparing ray/src/rt/RcontribSimulManager.cpp (file contents):
Revision 2.16 by greg, Thu Oct 23 01:26:48 2025 UTC vs.
Revision 2.17 by greg, Thu Oct 23 16:33:39 2025 UTC

# Line 116 | Line 116 | formstr(int f)
116          return("unknown");
117   }
118  
119 < // Our default data share function
119 > // Standard file data share function
120   RdataShare *
121 < defDataShare(const char *name, RCOutputOp op, size_t siz)
121 > fileDataShare(const char *name, RCOutputOp op, size_t siz)
122 > {
123 >        return new RdataShareFile(name, RSDOflags[op], siz);
124 > }
125 >
126 > // Memory-mapped data share function
127 > RdataShare *
128 > mapDataShare(const char *name, RCOutputOp op, size_t siz)
129   {
130          return new RdataShareMap(name, RSDOflags[op], siz);
131   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines