| 545 | message receiveMessage(); |
| 546 | |
| 547 | inline bool isInvalid() const |
| 548 | { |
| 549 | #ifdef SYNC_WITH_SHM_FIFO |
| 550 | return m_in->isInvalid() || m_out->isInvalid(); |
| 551 | #else |
| 552 | return m_invalid; |
| 553 | #endif |
| 554 | } |
| 555 | |
| 556 | message waitForMessage( const message & _m, |
| 557 | bool _busy_waiting = false ); |
no test coverage detected