summaryrefslogtreecommitdiff
path: root/lib/ReadJob.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-20 11:57:12 +0000
committerPixel <Pixel>2001-11-20 11:57:12 +0000
commit0497d21e5b7b483259642aad1f23392995863c17 (patch)
tree3be88d03b903df7e6c716ca5eb66cdfb71f11bb8 /lib/ReadJob.cc
parentcca213f6493119ab3f642e08dba798f557630f53 (diff)
WaitFor, added sticky flag
Diffstat (limited to 'lib/ReadJob.cc')
-rw-r--r--lib/ReadJob.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ReadJob.cc b/lib/ReadJob.cc
index 9f037d9..f2749bb 100644
--- a/lib/ReadJob.cc
+++ b/lib/ReadJob.cc
@@ -2,8 +2,8 @@
#include "HttpServ.h"
ReadJob::ReadJob(Handle * as, Handle * ad) : s(as), d(ad) {
- WaitFor(s);
- WaitFor(d);
+ WaitFor(s, W4_STICKY);
+ WaitFor(d, W4_STICKY);
}
ReadJob::~ReadJob() { }