From 368682d392b2fb2cb373d1bfe632385f81d8028b Mon Sep 17 00:00:00 2001 From: David Baird Date: Sat, 28 Dec 2013 09:49:58 -0500 Subject: [PATCH] Update README. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3409b25..73adf86 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,9 @@ static pointer create_dummy(); // Function to perform actual network send()/recv() I/O: // (note: if all you need is to recv()/dispatch() messages, then timeout can be -// used to block until a message arrives) -void poll(int timeout = 0); +// used to block until a message arrives. By default, when timeout is 0, poll() +// will not block at all.) +void poll(int timeout = 0); // timeout in milliseconds // Receive a message, and pass it to callable(). Really, this just looks at // a buffer (filled up by poll()) and decodes any messages in the buffer.