diff options
author | William Orr <will@worrbase.com> | 2018-10-02 05:19:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-10-02 05:19:56 (GMT) |
commit | 81574b80e92554adf75c13fa42415beb8be383cb (patch) | |
tree | 70dcda38648327f9fcd10e862e938ba29135b344 /Modules/clinic | |
parent | be4e5b89204283a62e369439025f00362d0424f6 (diff) | |
download | cpython-81574b80e92554adf75c13fa42415beb8be383cb.zip cpython-81574b80e92554adf75c13fa42415beb8be383cb.tar.gz cpython-81574b80e92554adf75c13fa42415beb8be383cb.tar.bz2 |
closes bpo-34862: Guard definition of convert_sched_param with POSIX_SPAWN_SETSCHEDULER. (GH-9658)
Fixes broken build on OpenBSD-current.
Diffstat (limited to 'Modules/clinic')
-rw-r--r-- | Modules/clinic/posixmodule.c.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/clinic/posixmodule.c.h b/Modules/clinic/posixmodule.c.h index 704c824..99a1be7 100644 --- a/Modules/clinic/posixmodule.c.h +++ b/Modules/clinic/posixmodule.c.h @@ -2064,7 +2064,7 @@ exit: #endif /* defined(HAVE_SCHED_H) && defined(HAVE_SCHED_SETSCHEDULER) */ -#if defined(HAVE_SCHED_H) && (defined(HAVE_SCHED_SETSCHEDULER) || defined(HAVE_SCHED_SETPARAM)) +#if defined(HAVE_SCHED_H) && (defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDPARAM)) PyDoc_STRVAR(os_sched_param__doc__, "sched_param(sched_priority)\n" @@ -2096,7 +2096,7 @@ exit: return return_value; } -#endif /* defined(HAVE_SCHED_H) && (defined(HAVE_SCHED_SETSCHEDULER) || defined(HAVE_SCHED_SETPARAM)) */ +#endif /* defined(HAVE_SCHED_H) && (defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDULER) || defined(POSIX_SPAWN_SETSCHEDPARAM)) */ #if defined(HAVE_SCHED_H) && defined(HAVE_SCHED_SETSCHEDULER) @@ -6757,4 +6757,4 @@ exit: #ifndef OS_GETRANDOM_METHODDEF #define OS_GETRANDOM_METHODDEF #endif /* !defined(OS_GETRANDOM_METHODDEF) */ -/*[clinic end generated code: output=40cac0135f846202 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=1603fddefffa1fb9 input=a9049054013a1b77]*/ |