aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'TODO')
-rw-r--r--TODO12
1 files changed, 12 insertions, 0 deletions
diff --git a/TODO b/TODO
index ce3ee38..9fdb1e8 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,15 @@
1replace times by getrusage
2
3make sure modules know if their dependencies are there.
4
5one thing i noticed in usocket.c is that it doesn't check for EINTR
6after write(), sendto(), read(), recvfrom() etc. ? the usual trick is
7to loop while you get EINTR:
8
9 do
10 ret = write(...);
11 while(ret < 0 && errno == EINTR)
12
1 13
2Read about 14Read about
3 15