Skip to content

Commit

Permalink
disable use of __pthread_get_minstack which is non public symbol (thi…
Browse files Browse the repository at this point in the history
…s may be a temporary fix)
  • Loading branch information
bmbolstad committed Nov 24, 2020
1 parent 6956db2 commit 6b016db
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: preprocessCore
Version: 1.53.0
Version: 1.53.1
Title: A collection of pre-processing functions
Author: Ben Bolstad <[email protected]>
Maintainer: Ben Bolstad <[email protected]>
Expand Down
6 changes: 4 additions & 2 deletions src/R_subColSummarize.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ struct loop_data{
#ifdef __linux__
#include <features.h>
#ifdef __GLIBC__
#ifdef __GLIBC_PREREQ && __GLIBC_PREREQ(2, 15)
#define INFER_MIN_STACKSIZE 1
#ifdef __GLIBC_PREREQ
#if __GLIBC_PREREQ(2, 15)
/* #define INFER_MIN_STACKSIZE 1 */ /* CUrrently Disabled */
#endif
#endif
#endif
#endif
Expand Down
6 changes: 4 additions & 2 deletions src/R_subrcModel_interfaces.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,10 @@ struct loop_data{
#ifdef __linux__
#include <features.h>
#ifdef __GLIBC__
#ifdef __GLIBC_PREREQ && __GLIBC_PREREQ(2, 15)
#define INFER_MIN_STACKSIZE 1
#ifdef __GLIBC_PREREQ
#if __GLIBC_PREREQ(2, 15)
/*#define INFER_MIN_STACKSIZE 0 */ /* currently disabled */
#endif
#endif
#endif
#endif
Expand Down
6 changes: 4 additions & 2 deletions src/qnorm.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,10 @@ struct loop_data{
#ifdef __linux__
#include <features.h>
#ifdef __GLIBC__
#ifdef __GLIBC_PREREQ && __GLIBC_PREREQ(2, 15)
#define INFER_MIN_STACKSIZE 1
#ifdef __GLIBC_PREREQ
#if __GLIBC_PREREQ(2, 15)
/* #define INFER_MIN_STACKSIZE 1 */ /* Currently Disabled */
#endif
#endif
#endif
#endif
Expand Down
6 changes: 4 additions & 2 deletions src/rma_background4.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ struct loop_data{
#ifdef __linux__
#include <features.h>
#ifdef __GLIBC__
#ifdef __GLIBC_PREREQ && __GLIBC_PREREQ(2, 15)
#define INFER_MIN_STACKSIZE 1
#ifdef __GLIBC_PREREQ
#if __GLIBC_PREREQ(2, 15)
/* #define INFER_MIN_STACKSIZE 1*/ /* Currently disabled */
#endif
#endif
#endif
#endif
Expand Down

0 comments on commit 6b016db

Please sign in to comment.