Files
fail/core/experiments/l4sys/experiment.hpp

18 lines
391 B
C++

#ifndef __COOLEXPERIMENT_HPP__
#define __COOLEXPERIMENT_HPP__
#include "controller/ExperimentFlow.hpp"
#include "jobserver/JobClient.hpp"
class L4SysExperiment : public fi::ExperimentFlow {
fi::JobClient m_jc;
public:
L4SysExperiment() : m_jc("localhost") {}
bool run();
private:
std::string sanitised(std::string in_str);
fi::BaseEvent* waitIOOrOther(bool clear_output);
};
#endif