Skip to content

Commit f54fa0f

Browse files
committed
TODOs
1 parent 6ed3f79 commit f54fa0f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

coroutine.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,5 +289,3 @@ size_t coroutine_alive(void)
289289
{
290290
return active.count;
291291
}
292-
293-
// TODO: implement sleeping by timeout

coroutine.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ void coroutine_sleep_read(int fd);
4242
// Trying to write to fd after coroutine_sleep_write() should not cause EAGAIN.
4343
void coroutine_sleep_write(int fd);
4444

45+
// TODO: implement sleeping by timeout
46+
// TODO: add timeouts to coroutine_sleep_read() and coroutine_sleep_write()
47+
4548
#ifdef __cplusplus
4649
}
4750
#endif // __cplusplus

0 commit comments

Comments
 (0)