summaryrefslogtreecommitdiff
path: root/lib/Handle.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-12-26 16:36:22 +0000
committerPixel <Pixel>2001-12-26 16:36:22 +0000
commita0fa4b62216558259e5706f1cca5d26f75eacaa8 (patch)
tree61368ce6347b575af1b7adbb30025c9d7084e2a7 /lib/Handle.cc
parenta19f31f4de26dc13aa5bfbfbeabcea9c7aca9c99 (diff)
Pwet
Diffstat (limited to 'lib/Handle.cc')
-rw-r--r--lib/Handle.cc4
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 {