Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions stl/inc/thread
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,10 @@ public:
return thread::hardware_concurrency();
}

_NODISCARD native_handle_type native_handle() {
return _Impl.native_handle();
}

private:
void _Try_cancel_and_join() noexcept {
if (_Impl.joinable()) {
Expand Down