| 8836 | } |
| 8837 | |
| 8838 | Notification::Notification() |
| 8839 | : event_(::CreateEvent(NULL, // Default security attributes. |
| 8840 | TRUE, // Do not reset automatically. |
| 8841 | FALSE, // Initially unset. |
| 8842 | NULL)) { // Anonymous event. |
| 8843 | GTEST_CHECK_(event_.Get() != NULL); |
| 8844 | } |
| 8845 | |
| 8846 | void Notification::Notify() { |
| 8847 | GTEST_CHECK_(::SetEvent(event_.Get()) != FALSE); |