Skip to content

Commit

Permalink
Move task related things
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali ihsan Cengiz committed Oct 27, 2023
1 parent 4758c9f commit 12bead2
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions example/ExampleTasks.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include <iostream>
#include <memory>
#include <mutex>
#include "TaskListener.hpp"
#include "executor/ThreadPoolExecutor.hpp"
#include "Task/TaskListener.hpp"
#include "Task/ThreadPoolExecutor.hpp"

std::mutex m;

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

#include <map>
#include <typeindex>
#include "executor/ThreadPoolExecutor.hpp"
#include "detail/TaskMapping.hpp"
#include "Task/ThreadPoolExecutor.hpp"
#include "Task/detail/TaskMapping.hpp"

struct TaskDispatcher
{
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/policy_tests.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <gtest/gtest.h>
#include "SchedulePolicy.hpp"
#include "Task/SchedulePolicy.hpp"

TEST(SchedulePolicy, RoundRobinTest)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/task_tests.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <gtest/gtest.h>

#include "TaskListener.hpp"
#include "Task/TaskListener.hpp"

std::mutex m1, m2;
struct Task1 : taskBase
Expand Down

0 comments on commit 12bead2

Please sign in to comment.