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

@@ -28,10 +28,10 @@ class XTimer : public XObject {
uint32_t routine_arg, bool resume);
X_STATUS Cancel();
virtual void* GetWaitHandle() { return handle_; }
virtual void* GetWaitHandle() { return native_handle_; }
private:
HANDLE handle_;
HANDLE native_handle_;
uint32_t current_routine_;
uint32_t current_routine_arg_;