diff options
author | Pixel <Pixel> | 2001-11-27 15:10:33 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-27 15:10:33 +0000 |
commit | 76b2e3c19278da49193aa1599a35197b279b4439 (patch) | |
tree | 01a9c64a71a7e4568b5f0ad5db3077e0c0311b08 /lib/CopyJob.cc | |
parent | 29f8cedf68c5e45ca20078a2a34a07875d7dea5b (diff) |
Bug in taskman...
Diffstat (limited to 'lib/CopyJob.cc')
-rw-r--r-- | lib/CopyJob.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CopyJob.cc b/lib/CopyJob.cc index a736e9d..fd31eff 100644 --- a/lib/CopyJob.cc +++ b/lib/CopyJob.cc @@ -18,7 +18,7 @@ int CopyJob::Do() throw (GeneralException) { r = s->read(buffer, MIN(COPY_BUFSIZ, tr)); } catch (IOAgain e) { - Suspend(); + Suspend(TASK_ON_HOLD); } case 1: if (!r) { @@ -29,7 +29,7 @@ int CopyJob::Do() throw (GeneralException) { } catch (IOAgain e) { current = 1; - Suspend(); + Suspend(TASK_ON_HOLD); } current = 0; } |