-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
091bdeb
commit 3c6a410
Showing
3 changed files
with
36 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# | ||
# pthread support | ||
# | ||
|
||
find_path(THREAD_INCLUDE_DIR | ||
NAMES | ||
pthread.h | ||
) | ||
find_library(THREAD_LIBRARY | ||
NAMES | ||
pthread | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(THREAD DEFAULT_MSG | ||
THREAD_LIBRARY THREAD_INCLUDE_DIR) | ||
|
||
if(THREAD_FOUND) | ||
set(THREAD_LIBRARIES ${THREAD_LIBRARY}) | ||
set(THREAD_INCLUDE_DIRS ${THREAD_INCLUDE_DIR}) | ||
endif() | ||
|
||
mark_as_advanced(THREAD_INCLUDE_DIR THREAD_LIBRARY) |
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
3c6a410
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jesperpedersen, where are we planning to use threads??
3c6a410
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are using pthreads for workers - see the core data structures