-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
utils/worker.cpp: improved including + using
- Loading branch information
1 parent
cbefa75
commit a02d606
Showing
1 changed file
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Martin Pulec <[email protected]> | ||
*/ | ||
/* | ||
* Copyright (c) 2013 CESNET, z. s. p. o. | ||
* Copyright (c) 2013-2024 CESNET, z. s. p. o. | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
|
@@ -35,18 +35,20 @@ | |
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#include "utils/misc.h" // get_cpu_core_count | ||
#include "utils/thread.h" | ||
#include "utils/worker.h" | ||
|
||
#include <algorithm> | ||
#include <cassert> | ||
#include <pthread.h> | ||
#include <queue> | ||
#include <set> | ||
#include <vector> | ||
|
||
using namespace std; | ||
#include "utils/misc.h" // get_cpu_core_count | ||
#include "utils/thread.h" | ||
#include "utils/worker.h" | ||
|
||
using std::queue; | ||
using std::set; | ||
using std::vector; | ||
|
||
struct wp_worker; | ||
|
||
|