We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed3f79 commit f54fa0fCopy full SHA for f54fa0f
coroutine.c
@@ -289,5 +289,3 @@ size_t coroutine_alive(void)
289
{
290
return active.count;
291
}
292
-
293
-// TODO: implement sleeping by timeout
coroutine.h
@@ -42,6 +42,9 @@ void coroutine_sleep_read(int fd);
42
// Trying to write to fd after coroutine_sleep_write() should not cause EAGAIN.
43
void coroutine_sleep_write(int fd);
44
45
+// TODO: implement sleeping by timeout
46
+// TODO: add timeouts to coroutine_sleep_read() and coroutine_sleep_write()
47
+
48
#ifdef __cplusplus
49
50
#endif // __cplusplus
0 commit comments