Displaying 2 results from an estimated 2 matches for "restore_".
Did you mean:
restore
2006 Jun 06
2
Error checking on migration?
I''ve noticed that migration doesn''t fail if the VM cannot access the
disk image on the new host. (xen-unstable 10273) The VM ends up on the
new host and hangs when it does a disk access. This is a somewhat evil
behavior.
Does anyone have a fix for this in-hand, somewhere? If not, any advice
where to look to fix the problem?
Thanks,
John Byrne
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...e temporary for ",
+ db.names.back());
first = t;
}
break;
}
break;
}
}
return first;
}
template <class T>
class save_value
{
T& restore_;
T original_value_;
public:
save_value(T& restore)
: restore_(restore),
original_value_(restore)
{}
~save_value()
{
restore_ = std::move(original_value_);
}
save_value(const save_value&) = delete;
save_value&...