Killed a few bugs found by Tomas.
This commit is contained in:
parent
9bc4e0648a
commit
3febb302ad
10 changed files with 99 additions and 58 deletions
12
TODO
12
TODO
|
@ -1,3 +1,15 @@
|
|||
replace times by getrusage
|
||||
|
||||
make sure modules know if their dependencies are there.
|
||||
|
||||
one thing i noticed in usocket.c is that it doesn't check for EINTR
|
||||
after write(), sendto(), read(), recvfrom() etc. ? the usual trick is
|
||||
to loop while you get EINTR:
|
||||
|
||||
do
|
||||
ret = write(...);
|
||||
while(ret < 0 && errno == EINTR)
|
||||
|
||||
|
||||
Read about
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue