diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2019-11-18 15:53:29 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2019-11-18 15:53:29 +0300 |
commit | 8f6c4b0033c72f8ac14694c419a99458339dd6a9 (patch) | |
tree | 06c106e622a58100aa85a381b9b65d222b076df4 /debian/patches/boehm-gc-getnprocs.diff | |
parent | 42156b5190f4fa150e1fab6777eb81e69d4db8c9 (diff) | |
download | gcc-9-debian.tar.gz |
Import gcc-9 (9.2.1-19)debian/9.2.1-19debian
Diffstat (limited to 'debian/patches/boehm-gc-getnprocs.diff')
-rw-r--r-- | debian/patches/boehm-gc-getnprocs.diff | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/debian/patches/boehm-gc-getnprocs.diff b/debian/patches/boehm-gc-getnprocs.diff deleted file mode 100644 index 5b470cf..0000000 --- a/debian/patches/boehm-gc-getnprocs.diff +++ /dev/null @@ -1,20 +0,0 @@ -# DP: boehm-gc/pthread_support.c (GC_get_nprocs): Use sysconf as fallback. - ---- - boehm-gc/pthread_support.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) - -Index: b/src/boehm-gc/pthread_support.c -=================================================================== ---- a/src/boehm-gc/pthread_support.c -+++ b/src/boehm-gc/pthread_support.c -@@ -724,7 +724,8 @@ int GC_get_nprocs() - f = open("/proc/stat", O_RDONLY); - if (f < 0 || (len = STAT_READ(f, stat_buf, STAT_BUF_SIZE)) < 100) { - WARN("Couldn't read /proc/stat\n", 0); -- return -1; -+ /* Fallback to sysconf after the warning */ -+ return sysconf(_SC_NPROCESSORS_ONLN); - } - for (i = 0; i < len - 100; ++i) { - if (stat_buf[i] == '\n' && stat_buf[i+1] == 'c' |