Skip to content

Commit

Permalink
chore(vendor): fix psutil getpagesize() for newer macos (#3382)
Browse files Browse the repository at this point in the history
Newer versions of macos do not have `getpagesize()`, and instead `PAGE_SIZE` should be used.

giampaolo/psutil#1794
  • Loading branch information
brettlangdon authored Mar 7, 2022
1 parent 2204b68 commit d9b9ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ddtrace/vendor/psutil/_psutil_osx.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ psutil_virtual_mem(PyObject *self, PyObject *args) {
uint64_t total;
size_t len = sizeof(total);
vm_statistics_data_t vm;
int pagesize = getpagesize();
int pagesize = PAGE_SIZE;
// physical mem
mib[0] = CTL_HW;
mib[1] = HW_MEMSIZE;
Expand Down Expand Up @@ -553,7 +553,7 @@ psutil_swap_mem(PyObject *self, PyObject *args) {
size_t size;
struct xsw_usage totals;
vm_statistics_data_t vmstat;
int pagesize = getpagesize();
int pagesize = PAGE_SIZE;

mib[0] = CTL_VM;
mib[1] = VM_SWAPUSAGE;
Expand Down

0 comments on commit d9b9ad8

Please sign in to comment.