You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No longer a header-only library. Added support for src files to make it simpler to integrate with dynamic libraries with hidden symbols.
Added .cpp files to hold thread pool and pre-exit support code to avoid duplicates when built as/in a DLL.
Declared pre_exit and at_pre_exit as extern "C" to make them simpler to export from a DLL in an export list.
Adding an issue to make it simpler to export the default executor as well.
---------
Co-authored-by: Guillaume BOTTESI <[email protected]>
Co-authored-by: Sean Parent <[email protected]>
Copy file name to clipboardexpand all lines: docs/include/stlab/pre_exit.hpp/f_at_pre_exit.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ hyde:
8
8
- function
9
9
inline:
10
10
brief:
11
-
- Register a pre-exit handler. The pre-exit-handler may not throw. With C++17 or later it is required to be `noexcept`.
11
+
- Register a pre-exit handler. The `pre-exit-handler` may not throw. With C++17 or later it is required to be `noexcept`.
12
12
defined_in_file: stlab/pre_exit.hpp
13
13
overloads:
14
14
void at_pre_exit(stlab::pre_exit_handler):
@@ -19,10 +19,10 @@ hyde:
19
19
description: Register the `pre_exit_handler` to be called on [`pre_exit()`](./f_pre_exit.html). The functions are called in the reverse order that they are registered.
20
20
inline:
21
21
description:
22
-
- Register a pre-exit handler. The pre-exit-handler may not throw. With C++17 or later it is required to be `noexcept`.
22
+
- Register a pre-exit handler. The `pre-exit-handler` may not throw. With C++17 or later it is required to be `noexcept`.
Copy file name to clipboardexpand all lines: docs/tools/docker-tools/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ This should leave you at a bash prompt that looks like this:
75
75
app@fc7590a63ba3:~$
76
76
```
77
77
78
-
The hex number is the docker image container ID and may be different. Going foreward I refer to this as the _docker_ prompt to distinguish it from the _local_ prompt.
78
+
The hex number is the docker image container ID and may be different. Going foreword I refer to this as the _docker_ prompt to distinguish it from the _local_ prompt.
0 commit comments