summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2018-08-29 22:51:58 +0200
committertomsmeding <tom.smeding@gmail.com>2018-08-29 22:51:58 +0200
commit34ab0451bdd1e7496d607acb6ee209586ee7e86e (patch)
treeadf3a587581418bf381fd3b98f38fc55d192b0f2
parent9da9ab3e4517328ffe0fd0aaf23e2056b705ad76 (diff)
Rename job.{cpp,h} to scheduler
-rw-r--r--main.cpp2
-rw-r--r--scheduler.cpp (renamed from job.cpp)2
-rw-r--r--scheduler.h (renamed from job.h)0
3 files changed, 2 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 3a801ba..173346c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -17,7 +17,7 @@
#include <unistd.h>
#include <sys/stat.h>
#include <sys/time.h>
-#include "job.h"
+#include "scheduler.h"
#include "process.h"
#include "error.h"
#include "multilog.h"
diff --git a/job.cpp b/scheduler.cpp
index 90fede2..452b0bb 100644
--- a/job.cpp
+++ b/scheduler.cpp
@@ -1,7 +1,7 @@
#include <iostream>
#include <chrono>
#include <cassert>
-#include "job.h"
+#include "scheduler.h"
void Scheduler::workerEntry() {
while (true) {
diff --git a/job.h b/scheduler.h
index 95da7c7..95da7c7 100644
--- a/job.h
+++ b/scheduler.h