Skip to content

Commit

Permalink
fix include
Browse files Browse the repository at this point in the history
Signed-off-by: Ric Li <[email protected]>
  • Loading branch information
ricmli committed Nov 15, 2023
1 parent 42c1114 commit 5f12687
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manager/mtl_lcore.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
* Copyright(c) 2023 Intel Corporation
*/

#include <rte_build_config.h>

#include <bitset>
#include <iostream>
#include <mutex>

#define MTL_MAX_LCORE 128

class mtl_lcore {
private:
std::bitset<RTE_MAX_LCORE> bs;
std::bitset<MTL_MAX_LCORE> bs;
std::mutex bs_mtx;

public:
Expand Down

0 comments on commit 5f12687

Please sign in to comment.