diff options
author | Furkan Onder <furkanonder@protonmail.com> | 2024-12-28 18:49:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-28 18:49:45 (GMT) |
commit | 492b224b991cd9027f1bc6d9988d01e94f764992 (patch) | |
tree | 4aca7e16365e6f10563ebfc9e73e0688f57cea69 /configure | |
parent | 2cf396c368a188e9142843e566ce6d8e6eb08999 (diff) | |
download | cpython-492b224b991cd9027f1bc6d9988d01e94f764992.zip cpython-492b224b991cd9027f1bc6d9988d01e94f764992.tar.gz cpython-492b224b991cd9027f1bc6d9988d01e94f764992.tar.bz2 |
gh-128279: Enhance the NetBSD compatibility for thread naming (#128280)
Enhance NetBSD compatibility for thread naming in _threadmodule.c.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -29148,6 +29148,7 @@ CPPFLAGS=$save_CPPFLAGS case "$ac_sys_system" in Linux*) PYTHREAD_NAME_MAXLEN=15;; # Linux and Android SunOS*) PYTHREAD_NAME_MAXLEN=31;; + NetBSD*) PYTHREAD_NAME_MAXLEN=31;; Darwin) PYTHREAD_NAME_MAXLEN=63;; iOS) PYTHREAD_NAME_MAXLEN=63;; FreeBSD*) PYTHREAD_NAME_MAXLEN=98;; |