diff options
Diffstat (limited to 'lib/Handle.cc')
-rw-r--r-- | lib/Handle.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Handle.cc b/lib/Handle.cc index 9f6736d..47be433 100644 --- a/lib/Handle.cc +++ b/lib/Handle.cc @@ -46,7 +46,7 @@ ssize_t Handle::write(const void *buf, size_t count) throw (GeneralException) { done = false; full = true; if (nonblock) { - cerr << "write: throwing IOAgain for handle " << GetName() << endl; +// cerr << "write: throwing IOAgain for handle " << GetName() << endl; throw IOAgain(); } else { sleep(1); @@ -77,7 +77,7 @@ ssize_t Handle::read(void *buf, size_t count) throw (GeneralException) { // Avant de déclarer une erreur, on vérifie si ce n'est pas un // problème lié au fait qu'il n'y a plus d'octets. if (nonblock) { - cerr << "read: throwing IOAgain for handle " << GetName() << endl; +// cerr << "read: throwing IOAgain for handle " << GetName() << endl; throw IOAgain(); } } else { |