Skip to content

Commit 6059743

Browse files
gh-95672: Update memory_watchdog to use test.support.get_pagesize (gh-102365)
1 parent eaae563 commit 6059743

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

Lib/test/memory_watchdog.py

+2-9
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,13 @@
55
# If the process crashes, reading from the /proc entry will fail with ESRCH.
66

77

8-
import os
98
import sys
109
import time
10+
from test.support import get_pagesize
1111

1212

13-
try:
14-
page_size = os.sysconf('SC_PAGESIZE')
15-
except (ValueError, AttributeError):
16-
try:
17-
page_size = os.sysconf('SC_PAGE_SIZE')
18-
except (ValueError, AttributeError):
19-
page_size = 4096
20-
2113
while True:
14+
page_size = get_pagesize()
2215
sys.stdin.seek(0)
2316
statm = sys.stdin.read()
2417
data = int(statm.split()[5])

0 commit comments

Comments
 (0)