rmaprath abandoned this revision.
rmaprath added a comment.
Most of this is no longer needed. I'll submit patches for the parts that are
actually needed (e.g. nanosleep) later on. Thanks.
https://reviews.llvm.org/D20874
___
cfe-commits mailing list
rmaprath updated this revision to Diff 59507.
rmaprath added a comment.
Added a comment about `~std::thread()` hook.
@EricWF: Gentle ping.
http://reviews.llvm.org/D20874
Files:
include/__threading_support
src/thread.cpp
Index: src/thread.cpp
===
bcraig added inline comments.
Comment at: include/__threading_support:187
@@ +186,3 @@
+{
+std::terminate();
+}
rmaprath wrote:
> bcraig wrote:
> > Why does this need to go in threading_support? Seems like this is mostly
> > orthogonal to threading. libcxxa
bcraig added inline comments.
Comment at: include/__threading_support:187
@@ +186,3 @@
+{
+std::terminate();
+}
Why does this need to go in threading_support? Seems like this is mostly
orthogonal to threading. libcxxabi seems like the better place to hold c
rmaprath created this revision.
rmaprath added reviewers: EricWF, bcraig, mclow.lists.
rmaprath added a subscriber: cfe-commits.
Bumped into these while working on the externally threaded variant. I think it
makes most sense to group these two under the main threading API. This greatly
simplifie