summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/job.h
diff options
context:
space:
mode:
Diffstat (limited to 'fastos/src/tests/job.h')
-rw-r--r--fastos/src/tests/job.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/fastos/src/tests/job.h b/fastos/src/tests/job.h
index 1d35ec95270..35e1d02a9d3 100644
--- a/fastos/src/tests/job.h
+++ b/fastos/src/tests/job.h
@@ -7,17 +7,13 @@
enum JobCode
{
- PRINT_MESSAGE_AND_WAIT3SEC,
+ PRINT_MESSAGE_AND_WAIT3MSEC,
INCREASE_NUMBER,
- PRIORITY_TEST,
WAIT_FOR_BREAK_FLAG,
WAIT_FOR_THREAD_TO_FINISH,
WAIT_FOR_CONDITION,
- BOUNCE_CONDITIONS,
TEST_ID,
WAIT2SEC_AND_SIGNALCOND,
- HOLD_MUTEX_FOR2SEC,
- WAIT_2_SEC,
SILENTNOP,
NOP
};
@@ -34,7 +30,6 @@ public:
std::mutex *mutex;
std::condition_variable *condition;
FastOS_ThreadInterface *otherThread, *ownThread;
- double *timebuf;
double average;
int result;
FastOS_ThreadId _threadId;
@@ -49,7 +44,6 @@ public:
condition(nullptr),
otherThread(nullptr),
ownThread(nullptr),
- timebuf(nullptr),
average(0.0),
result(-1),
_threadId(),