diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-11-27 00:30:54 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-11-27 00:30:54 +0000 |
commit | 3febb302ad28fd25de51cbc686739469b92d8921 (patch) | |
tree | 0a8d9a1070a7c1f2566c22562693fb27963037d9 /TODO | |
parent | 9bc4e0648ab4a177293a94425594bdc54c9a84fa (diff) | |
download | luasocket-3febb302ad28fd25de51cbc686739469b92d8921.tar.gz luasocket-3febb302ad28fd25de51cbc686739469b92d8921.tar.bz2 luasocket-3febb302ad28fd25de51cbc686739469b92d8921.zip |
Killed a few bugs found by Tomas.
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,15 @@ | |||
1 | replace times by getrusage | ||
2 | |||
3 | make sure modules know if their dependencies are there. | ||
4 | |||
5 | one thing i noticed in usocket.c is that it doesn't check for EINTR | ||
6 | after write(), sendto(), read(), recvfrom() etc. ? the usual trick is | ||
7 | to loop while you get EINTR: | ||
8 | |||
9 | do | ||
10 | ret = write(...); | ||
11 | while(ret < 0 && errno == EINTR) | ||
12 | |||
1 | 13 | ||
2 | Read about | 14 | Read about |
3 | 15 | ||