mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Checkpoint - all src/ except src/input
This commit is contained in:
commit
61ce9b5412
91 changed files with 8917 additions and 16 deletions
|
@ -273,6 +273,13 @@ private:
|
|||
*/
|
||||
bool HasOut() { return queue_out.Ready(); }
|
||||
|
||||
/**
|
||||
* Returns true if there might be at least one message pending for
|
||||
* the main thread. This function may occasionally return a value not
|
||||
* indicating the actual state, but won't do so very often.
|
||||
*/
|
||||
bool MightHaveOut() { return queue_out.MaybeReady(); }
|
||||
|
||||
Queue<BasicInputMessage *> queue_in;
|
||||
Queue<BasicOutputMessage *> queue_out;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue