Changeset 6:81a0ade149e1 in xplcommon for src/xplcommon/posix/WaitableEvent.cc
- Timestamp:
- 12/29/12 06:40:32 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/xplcommon/posix/WaitableEvent.cc
r4 r6 62 62 //------------------------------------------------------------------------------ 63 63 64 bool WaitableEvent::ready()65 {66 return fired;67 }68 69 //------------------------------------------------------------------------------70 71 64 void WaitableEvent::fire() 72 65 { … … 90 83 return false; 91 84 } 85 } 86 87 //------------------------------------------------------------------------------ 88 89 bool WaitableEvent::isReady() 90 { 91 return fired; 92 92 } 93 93
Note:
See TracChangeset
for help on using the changeset viewer.