pid_t threadId() const { return threadId_; }
| 107 | |
| 108 | // pid_t threadId() const { return threadId_; } |
| 109 | void assertInLoopThread() |
| 110 | { |
| 111 | if (!isInLoopThread()) |
| 112 | { |
| 113 | abortNotInLoopThread(); |
| 114 | } |
| 115 | } |
| 116 | bool isInLoopThread() const { return threadId_ == CurrentThread::tid(); } |
| 117 | // bool callingPendingFunctors() const { return callingPendingFunctors_; } |
| 118 | bool eventHandling() const { return eventHandling_; } |
nothing calls this directly
no outgoing calls
no test coverage detected