Renamed handle_ to native_handle_ in some places where it makes more sense.

This commit is contained in:
gibbed
2015-06-10 21:18:12 -05:00
parent cabf9d6261
commit dc371009d9
8 changed files with 42 additions and 41 deletions

View File

@@ -26,10 +26,10 @@ class XMutant : public XObject {
X_STATUS ReleaseMutant(uint32_t priority_increment, bool abandon, bool wait);
virtual void* GetWaitHandle() { return handle_; }
virtual void* GetWaitHandle() { return native_handle_; }
private:
HANDLE handle_;
HANDLE native_handle_;
};
} // namespace kernel