Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 796ca9c

Browse files
committed
Fix compilation issue
1 parent 793f066 commit 796ca9c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/common/dedicated_thread_registry.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
//===----------------------------------------------------------------------===//
1212

1313
#include "common/dedicated_thread_registry.h"
14+
#include "common/dedicated_thread_task.h"
15+
#include "common/dedicated_thread_owner.h
1416
1517
namespace peloton {
1618

src/include/common/dedicated_thread_registry.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616
#include <vector>
1717
#include <thread>
1818
#include "common/macros.h"
19-
#include "common/dedicated_thread_task.h"
19+
2020

2121
namespace peloton {
2222

2323
class DedicatedThreadOwner;
24+
class DedicatedThreadTask;
2425
/**
2526
* Singleton class responsible for maintaining and dispensing long running
2627
* (dedicated) threads to other system components. The class also serves

0 commit comments

Comments
 (0)