mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Add CS_GNU_LIBC_VERSION and CS_GNU_LIBPTHREAD_VERSION constants for constr(),
and disable test_execvpe_with_bad_program() of test_os if the libc uses linuxthreads to avoid the "unknown signal 32" bug (see issue #4970).
This commit is contained in:
parent
febecd8276
commit
6f7adcc58e
2 changed files with 15 additions and 0 deletions
|
@ -6127,6 +6127,12 @@ static struct constdef posix_constants_confstr[] = {
|
|||
#ifdef _MIPS_CS_VENDOR
|
||||
{"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
|
||||
#endif
|
||||
#ifdef _CS_GNU_LIBC_VERSION
|
||||
{"CS_GNU_LIBC_VERSION", _CS_GNU_LIBC_VERSION},
|
||||
#endif
|
||||
#ifdef _CS_GNU_LIBPTHREAD_VERSION
|
||||
{"CS_GNU_LIBPTHREAD_VERSION", _CS_GNU_LIBPTHREAD_VERSION},
|
||||
#endif
|
||||
};
|
||||
|
||||
static int
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue