diff options
author | Pixel <Pixel> | 2001-11-14 16:59:02 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-14 16:59:02 +0000 |
commit | aa92df3c58daefb994da555fb45f2e3ee55f38d5 (patch) | |
tree | 6105f0ced059af0fceb10a29f318d0c13c83d051 /include/Task.h | |
parent | 9235fbc2a736da2c68eb2dc0a3c1007b4a202d5e (diff) |
Latest and various changes
Diffstat (limited to 'include/Task.h')
-rw-r--r-- | include/Task.h | 3 |
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 |