Correct RestoreThreadState to a void return type. Also, update the signature of its
callee, Thread::RestoreThreadStateFromCheckpoint, by updating it to a void return
type, and making it non-virtual.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
It is possible that the stub could fail to restore the checkpointed state, though apparently it either never has or never has mattered because no one if setting or checking the bool return. If this does end up failing we should plumb a Status through, since bool is too low information to be useful. This is fine for now.