Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
cbb319fe
"...git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "c613288c9b0c04ed4e61b6982f4b4e5ef6690a16"
Commit
cbb319fe
authored
Oct 21, 2012
by
Davis King
Browse files
clarified spec
parent
b273b1bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
dlib/bsp/bsp_abstract.h
dlib/bsp/bsp_abstract.h
+6
-3
No files found.
dlib/bsp/bsp_abstract.h
View file @
cbb319fe
...
@@ -36,9 +36,12 @@ namespace dlib
...
@@ -36,9 +36,12 @@ namespace dlib
THREAD SAFETY
THREAD SAFETY
This object is not thread-safe. This means you must serialize all access
This object is not thread-safe. In particular, you should only ever have
to it using an appropriate mutex or other synchronization mechanism if it
one thread that works with an instance of this object. This means that,
is to be accessed from multiple threads.
for example, you should not spawn sub-threads from within a BSP processing
node and have them invoke methods on this object. Instead, you should only
invoke this object's methods from within the BSP processing node's main
thread (i.e. the thread that executes the user supplied function funct()).
!*/
!*/
public:
public:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment