Removing SET_RETURN_ADDRESS - hopefully it'll never be needed again.

This commit is contained in:
Ben Vanik
2014-01-26 01:18:59 -08:00
parent 8789fd4134
commit ecf0988ddb
20 changed files with 81 additions and 83 deletions

View File

@@ -19,13 +19,16 @@ namespace frontend {
class ContextInfo {
public:
ContextInfo(size_t size);
ContextInfo(size_t size, uintptr_t thread_state_offset);
~ContextInfo();
size_t size() const { return size_; }
uintptr_t thread_state_offset() const { return thread_state_offset_; }
private:
size_t size_;
uintptr_t thread_state_offset_;
};