pthread_attr_setstackaddr.3: SYNOPSIS: Use 'restrict' in prototypes

Both POSIX and glibc use 'restrict' in pthread_attr_getstackaddr().
Let's use it here too.

.../glibc$ grep_glibc_prototype pthread_attr_getstackaddr
sysdeps/htl/pthread.h:138:
extern int pthread_attr_getstackaddr (const pthread_attr_t *__restrict __attr,
				      void **__restrict __stackaddr)
	__THROW __nonnull ((1, 2));
sysdeps/nptl/pthread.h:333:
extern int pthread_attr_getstackaddr (const pthread_attr_t *__restrict
				      __attr, void **__restrict __stackaddr)
     __THROW __nonnull ((1, 2)) __attribute_deprecated__;
.../glibc$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Alejandro Colomar 2021-03-08 19:53:12 +01:00 committed by Michael Kerrisk
parent c5144bd329
commit 4517c06e47
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ set/get stack address attribute in thread attributes object
.PP
.BI "int pthread_attr_setstackaddr(pthread_attr_t *" attr \
", void *" stackaddr );
.BI "int pthread_attr_getstackaddr(const pthread_attr_t *" attr ,
.BI " void **" stackaddr );
.BI "int pthread_attr_getstackaddr(const pthread_attr_t *restrict " attr ,
.BI " void **restrict " stackaddr );
.PP
Compile and link with \fI\-pthread\fP.
.fi