From: Florian Weimer Date: Wed, 12 Mar 2025 09:23:47 +0000 (+0100) Subject: Linux: Remove attribute access from sched_getattr (bug 32781) X-Git-Tag: glibc-2.42~405 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74c68fa61b5ebf4c64605a3cc5e47154a66671ce;p=thirdparty%2Fglibc.git Linux: Remove attribute access from sched_getattr (bug 32781) The GCC attribute expects an element count, not bytes. --- diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h index 3656e98eda..39b0b3d19c 100644 --- a/sysdeps/unix/sysv/linux/bits/sched.h +++ b/sysdeps/unix/sysv/linux/bits/sched.h @@ -152,7 +152,7 @@ int sched_setattr (pid_t tid, struct sched_attr *attr, unsigned int flags) store it in *ATTR. */ int sched_getattr (pid_t tid, struct sched_attr *attr, unsigned int size, unsigned int flags) - __THROW __nonnull ((2)) __attr_access ((__write_only__, 2, 3)); + __THROW __nonnull ((2)); #endif