summaryrefslogtreecommitdiff
path: root/include/Task.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-14 16:59:02 +0000
committerPixel <Pixel>2001-11-14 16:59:02 +0000
commitaa92df3c58daefb994da555fb45f2e3ee55f38d5 (patch)
tree6105f0ced059af0fceb10a29f318d0c13c83d051 /include/Task.h
parent9235fbc2a736da2c68eb2dc0a3c1007b4a202d5e (diff)
Latest and various changes
Diffstat (limited to 'include/Task.h')
-rw-r--r--include/Task.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Task.h b/include/Task.h
index 675b2ed..f2d4b0b 100644
--- a/include/Task.h
+++ b/include/Task.h
@@ -3,6 +3,7 @@
#ifdef __cplusplus
#include <unistd.h>
+#include <sys/time.h>
#include <vector.h>
#include <Exceptions.h>
#include <Handle.h>
@@ -31,7 +32,7 @@ class Task : public Base {
vector<Handle *> w4ha;
vector<Task *> w4ta;
vector<pid_t> w4pr;
- vector<struct timeval> w4to;
+ vector<timeval> w4to;
};
#else