Skip to content

Commit

Permalink
Merge pull request #317227 from rhelmot/freebsd-nix-boehmgc
Browse files Browse the repository at this point in the history
nix: make boehmgc patch respect HAVE_PTHREAD_ATTR_GET_NP
  • Loading branch information
Ericson2314 committed Jun 17, 2024
2 parents c5b1ce1 + f9b9794 commit 483a8dc
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,23 @@ index 2b45489..0e6d8ef 100644
GC_bool found_me = FALSE;
size_t nthreads = 0;
int i;
@@ -868,6 +870,31 @@ GC_INNER void GC_push_all_stacks(void)
@@ -868,6 +870,40 @@ GC_INNER void GC_push_all_stacks(void)
hi = p->altstack + p->altstack_size;
# endif
/* FIXME: Need to scan the normal stack too, but how ? */
+ } else {
+ #ifdef HAVE_PTHREAD_ATTR_GET_NP
+ if (pthread_attr_init(&pattr) != 0) {
+ ABORT("GC_push_all_stacks: pthread_attr_init failed!");
+ }
+ if (pthread_attr_get_np(p->id, &pattr) != 0) {
+ ABORT("GC_push_all_stacks: pthread_attr_get_np failed!");
+ }
+ #else
+ if (pthread_getattr_np(p->id, &pattr)) {
+ ABORT("GC_push_all_stacks: pthread_getattr_np failed!");
+ }
+ #endif
+ if (pthread_attr_getstacksize(&pattr, &stack_limit)) {
+ ABORT("GC_push_all_stacks: pthread_attr_getstacksize failed!");
+ }
Expand Down

0 comments on commit 483a8dc

Please sign in to comment.