aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2003-11-27 00:30:54 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2003-11-27 00:30:54 +0000
commit3febb302ad28fd25de51cbc686739469b92d8921 (patch)
tree0a8d9a1070a7c1f2566c22562693fb27963037d9 /TODO
parent9bc4e0648ab4a177293a94425594bdc54c9a84fa (diff)
downloadluasocket-3febb302ad28fd25de51cbc686739469b92d8921.tar.gz
luasocket-3febb302ad28fd25de51cbc686739469b92d8921.tar.bz2
luasocket-3febb302ad28fd25de51cbc686739469b92d8921.zip
Killed a few bugs found by Tomas.
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