xo-gc: scaffold verify_ok() method for DX1Collector
This commit is contained in:
parent
57d895a41c
commit
dfd9f7e6f5
3 changed files with 197 additions and 42 deletions
|
|
@ -24,9 +24,16 @@ namespace xo {
|
|||
* - for collector need to traverse data pointer *data
|
||||
**/
|
||||
class MutationLogEntry {
|
||||
public:
|
||||
using AGCObject = xo::mm::AGCObject;
|
||||
|
||||
public:
|
||||
MutationLogEntry(void * parent, void ** p_data, obj<AGCObject> snap);
|
||||
|
||||
void * parent() const { return parent_; }
|
||||
void ** p_data() const { return p_data_; }
|
||||
obj<AGCObject> snap() const { return snap_; }
|
||||
|
||||
private:
|
||||
/** address of object containing logged mutation **/
|
||||
void * parent_ = nullptr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue