mirror of https://github.com/CGAL/cgal
Document that setting the error/warning behavior/handler is not thread safe
This commit is contained in:
parent
1c400420ce
commit
ee37a9dd85
|
|
@ -29,24 +29,28 @@ typedef
|
|||
|
||||
|
||||
/*!
|
||||
This function is not thread safe.
|
||||
*/
|
||||
Failure_function
|
||||
set_error_handler( Failure_function handler);
|
||||
|
||||
|
||||
/*!
|
||||
This function is not thread safe.
|
||||
*/
|
||||
Failure_function
|
||||
set_warning_handler( Failure_function handler);
|
||||
|
||||
|
||||
/*!
|
||||
This function is not thread safe.
|
||||
*/
|
||||
Failure_behaviour
|
||||
set_error_behaviour(Failure_behaviour eb);
|
||||
|
||||
|
||||
/*!
|
||||
This function is not thread safe.
|
||||
*/
|
||||
Failure_behaviour
|
||||
set_warning_behaviour(Failure_behaviour eb);
|
||||
|
|
|
|||
|
|
@ -333,6 +333,8 @@ For warnings we provide `set_warning_behaviour()` which works in the same way.
|
|||
The only difference is that for warnings the default value is
|
||||
`CONTINUE`.
|
||||
|
||||
Setting the error and warning behavior is not thead safe.
|
||||
|
||||
|
||||
\subsection stl_control Control at a Finer Granularity
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue