1. be6c05c Revert "Make sure that WaitableEvent::TimedWait works fine with large timeouts." by rvargas · 10 years ago
  2. ac3c756 Make sure that WaitableEvent::TimedWait works fine with large timeouts. by rvargas · 10 years ago
  3. 8572897 Remove base::WaitForExitCode* by rvargas · 10 years ago
  4. 94ed6c4e WaitableEvent: Receive ScopedHandle at construction and remove Release method. by rvargas · 11 years ago
  5. 59d5d59 Use ScopedHandle for the private members of WaitableEvent. by rvargas · 11 years ago
  6. e70af3a Take extra lock in base::WaitableEvent::WaitMany. by [email protected] · 11 years ago
  7. 01c86ec Remove the rest of #pragma once in one big CL. by [email protected] · 13 years ago
  8. f2ebbf06 Objects that derive from RefCounted/RefCountedThreadSafe should not have public dtors. by [email protected] · 13 years ago
  9. 866cf33 Modify WaitableEvent::Wait() to return void by [email protected] · 14 years ago
  10. 0bea725 Rename BASE_API to BASE_EXPORT. by [email protected] · 14 years ago
  11. 3b63f8f4 Move some files from base to base/memory. by [email protected] · 14 years ago
  12. f53121d Base: First pass at having base.dll: definition of by [email protected] · 14 years ago
  13. 20305ec Remove obsolete base/lock.h and fix up callers to use the new header file and by [email protected] · 15 years ago
  14. a502bbe7 Start sorting methods in class declarations. by [email protected] · 15 years ago
  15. 44f9c95 Move CancellationFlag and WaitableEvent to the synchronization subdirectory. by [email protected] · 15 years ago[Renamed (96%) from base/waitable_event.h]
  16. d4799a3 FBTF: Moves code to the headers. by [email protected] · 15 years ago
  17. 32b76ef `#pragma once` for app, base, chrome, gfx, ipc, net, skia, views by [email protected] · 15 years ago
  18. 20cb5f48 Give classes with virtual methods virtual protected destructors instead of implicit non-virtual public destructors. by [email protected] · 16 years ago
  19. 5a3b914 Revert "Fix a ton of compiler warnings." by [email protected] · 16 years ago
  20. be952c3c Fix a ton of compiler warnings. by [email protected] · 16 years ago
  21. f539333 Reduce header dependencies in base/ by [email protected] · 16 years ago
  22. c891ab9 POSIX: allow WaitableEvents to be deleted while watching them. by [email protected] · 16 years ago
  23. 0802559 Revert "POSIX: allow WaitableEvents to be deleted while watching them." by [email protected] · 16 years ago
  24. 3fa48b28 POSIX: allow WaitableEvents to be deleted while watching them. by [email protected] · 16 years ago
  25. 3603722 Remove unneeded uses of base/ref_counted.h. by [email protected] · 16 years ago
  26. 05f007c2 An assert was being hit because WaitableEvent's dtor was calling CloseHandle on a handle that we already closed. by [email protected] · 16 years ago
  27. aa96ae77 POSIX: Get IPCSyncChannel unittests working by [email protected] · 17 years ago
  28. 550a1a4 Mac build fix by [email protected] · 17 years ago
  29. 1c4947f WaitableEvent is the replacement for Windows events. Previously in the code, a HANDLE from CreateEvent was used for signaling, both within a process and across processes. by [email protected] · 17 years ago
  30. e1acf6f Move Time, TimeDelta and TimeTicks into namespace base. by [email protected] · 17 years ago
  31. b2e9729 Set svn:eol-style = LF on files in base from which it is missing by [email protected] · 17 years ago
  32. bf09a50 Use a more compact license header in source files. by license.bot · 17 years ago
  33. ffd8308 Provide cross-platform implementation of WaitableEvent for use on Mac and Linux. by [email protected] · 17 years ago
  34. 0a646946 A basic wrapper for a windows event object that encapsulates the way we often use windows events. This API is not meant to be compatible with ObjectWatcher or MessageLoop::WatchObject. This API is meant to be easily ported to Mac & Linux using a traditional mutex and condition variable pairing. by [email protected] · 17 years ago