| 10025 | } |
| 10026 | |
| 10027 | Notification::Notification() |
| 10028 | : event_(::CreateEvent(nullptr, // Default security attributes. |
| 10029 | TRUE, // Do not reset automatically. |
| 10030 | FALSE, // Initially unset. |
| 10031 | nullptr)) { // Anonymous event. |
| 10032 | GTEST_CHECK_(event_.Get() != nullptr); |
| 10033 | } |
| 10034 | |
| 10035 | void Notification::Notify() { |
| 10036 | GTEST_CHECK_(::SetEvent(event_.Get()) != FALSE); |