| 81 | } |
| 82 | |
| 83 | StatusQuery *XQueueQueryEvent::QueryData() const |
| 84 | { |
| 85 | XASSERT(data_.query_data != nullptr, "query data should not be nullptr"); |
| 86 | XASSERT(data_.meta.pid == GetProcessId(), |
| 87 | "query data should only be accessed by the process creating it"); |
| 88 | return data_.query_data; |
| 89 | } |
| 90 | |
| 91 | StatusQuery *XQueueQueryAllEvent::QueryData() const |
| 92 | { |
no test coverage detected