Neale Ferguson
Neale Ferguson
We've been looking at this issue for a client who was experiencing large and growing memory use where it appeared lots of `QueueSegement` objects were resident in the heap. Early...
One of the problems with `_SC_AVPHYS_AVAIL` is that it corresponds to the "free" figure in the `free` command: ``` total used free shared buff/cache available Mem: 16472948 885212 3359136 860488...
> TBH I don't know, probably better to ask the CoreCLR folks about it. I'm tagging @naricc as he was the author of the original use of `_SC_AVPHYS_PAGES` in `memfuncs.c`....
I have created a version of the patch which reads `/proc/meminfo.c` to extract the `MemAvailable:` value and it doesn't crash and appears to return a reasonable value.
`_SC_AVPHYS_PAGES` is equivalent to the amount of _free_ pages in the system `_SC_PHYS_PAGES` is the total number of pages is in the system. The former doesn't exclude pages used by...
No. I've built images for 8 and 11 without any problems. -------- Original message -------- From: Jim Crowley Date: 12/6/19 03:40 (GMT+10:00) To: AdoptOpenJDK/openjdk-docker Cc: Neale Ferguson , Mention Subject:...
There was one issue that was still open for AdoptJDK on Z: https://github.com/AdoptOpenJDK/openjdk-build/issues/1310 Also, here is the Docker file I was using for Z: ``` FROM docker.io/clefos/clefos:latest MAINTAINER "The ClefOS...
Where should the changes be made? I see: 1. doc/src/reference.adoc 2. src/tools/builtin.py 3. src/tools/features/architecture-feature.jam 4. src/tools/features/instruction-set-feature.jam 5. src/tools/gcc.jam 6. src/tools/gcc.py I was envisaging something like this for s390, but I...
Found what the missing bits were. I should have PRs for boost/build/config/context in the near future.
True, but the linux kernel arch directory is s390 and s390x is just a superset. Gcc defines both __s390__ and __s390x__ when building with -m64 so I thought I better...