Blame man3/pthread_attr_setstackaddr.3

Packit 7cfc04
.\" Copyright (c) 2008 Linux Foundation, written by Michael Kerrisk
Packit 7cfc04
.\"     <mtk.manpages@gmail.com>
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.TH PTHREAD_ATTR_SETSTACKADDR 3 2017-09-15 "Linux" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
pthread_attr_setstackaddr, pthread_attr_getstackaddr \-
Packit 7cfc04
set/get stack address attribute in thread attributes object
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B #include <pthread.h>
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int pthread_attr_setstackaddr(pthread_attr_t *" attr \
Packit 7cfc04
", void *" stackaddr );
Packit 7cfc04
.BI "int pthread_attr_getstackaddr(const pthread_attr_t *" attr \
Packit 7cfc04
", void **" stackaddr );
Packit 7cfc04
.PP
Packit 7cfc04
Compile and link with \fI\-pthread\fP.
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
These functions are obsolete:
Packit 7cfc04
.B do not use them.
Packit 7cfc04
Use
Packit 7cfc04
.BR pthread_attr_setstack (3)
Packit 7cfc04
and
Packit 7cfc04
.BR pthread_attr_getstack (3)
Packit 7cfc04
instead.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.BR pthread_attr_setstackaddr ()
Packit 7cfc04
function sets the stack address attribute of the
Packit 7cfc04
thread attributes object referred to by
Packit 7cfc04
.I attr
Packit 7cfc04
to the value specified in
Packit 7cfc04
.IR stackaddr .
Packit 7cfc04
This attribute specifies the location of the stack that should
Packit 7cfc04
be used by a thread that is created using the thread attributes object
Packit 7cfc04
.IR attr .
Packit 7cfc04
.PP
Packit 7cfc04
.I stackaddr
Packit 7cfc04
should point to a buffer of at least
Packit 7cfc04
.B PTHREAD_STACK_MIN
Packit 7cfc04
bytes that was allocated by the caller.
Packit 7cfc04
The pages of the allocated buffer should be both readable and writable.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.BR pthread_attr_getstackaddr ()
Packit 7cfc04
function returns the stack address attribute of the
Packit 7cfc04
thread attributes object referred to by
Packit 7cfc04
.I attr
Packit 7cfc04
in the buffer pointed to by
Packit 7cfc04
.IR stackaddr .
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
On success, these functions return 0;
Packit 7cfc04
on error, they return a nonzero error number.
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
No errors are defined
Packit 7cfc04
(but applications should nevertheless
Packit 7cfc04
handle a possible error return).
Packit 7cfc04
.SH VERSIONS
Packit 7cfc04
These functions are provided by glibc since version 2.1.
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lbw28 lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR pthread_attr_setstackaddr (),
Packit 7cfc04
.BR pthread_attr_getstackaddr ()
Packit 7cfc04
T}	Thread safety	MT-Safe
Packit 7cfc04
.TE
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
POSIX.1-2001 specifies these functions but marks them as obsolete.
Packit 7cfc04
POSIX.1-2008 removes the specification of these functions.
Packit 7cfc04
.SH NOTES
Packit 7cfc04
.I Do not use these functions!
Packit 7cfc04
They cannot be portably used, since they provide no way of specifying
Packit 7cfc04
the direction of growth or the range of the stack.
Packit 7cfc04
For example, on architectures with a stack that grows downward,
Packit 7cfc04
.I stackaddr
Packit 7cfc04
specifies the next address past the
Packit 7cfc04
.I highest
Packit 7cfc04
address of the allocated stack area.
Packit 7cfc04
However, on architectures with a stack that grows upward,
Packit 7cfc04
.I stackaddr
Packit 7cfc04
specifies the
Packit 7cfc04
.I lowest
Packit 7cfc04
address in the allocated stack area.
Packit 7cfc04
By contrast, the
Packit 7cfc04
.I stackaddr
Packit 7cfc04
used by
Packit 7cfc04
.BR pthread_attr_setstack (3)
Packit 7cfc04
and
Packit 7cfc04
.BR pthread_attr_getstack (3),
Packit 7cfc04
is always a pointer to the lowest address in the allocated stack area
Packit 7cfc04
(and the
Packit 7cfc04
.I stacksize
Packit 7cfc04
argument specifies the range of the stack).
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR pthread_attr_init (3),
Packit 7cfc04
.BR pthread_attr_setstack (3),
Packit 7cfc04
.BR pthread_attr_setstacksize (3),
Packit 7cfc04
.BR pthread_create (3),
Packit 7cfc04
.BR pthreads (7)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.