preparation to deallocate objects properly

This commit is contained in:
Philipp Moritz
2016-06-21 13:46:38 -07:00
parent 170a2ee8b1
commit 5281bd414f
6 changed files with 80 additions and 7 deletions
+2
View File
@@ -10,6 +10,7 @@ typedef size_t ObjRef;
typedef size_t WorkerId;
typedef size_t ObjStoreId;
typedef size_t OperationId;
typedef size_t SegmentId; // index into a memory segment table
class FnInfo {
size_t num_return_vals_;
@@ -45,6 +46,7 @@ public:
struct slice {
uint8_t* data;
size_t len;
SegmentId segmentid;
};
#endif