Fix gcc uninitialized warning in FreeBSD zio_crypt.c
[zfs.git] / lib / libspl / include / sys / stack.h
blobed63d3cb9da27a46f24d8bbfd708920010804599
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * This header file distributed under the terms of the CDDL.
23 * Portions Copyright 2008 Sun Microsystems, Inc. All Rights reserved.
25 #ifndef _SYS_STACK_H
26 #define _SYS_STACK_H
28 #include <pthread.h>
30 #define STACK_BIAS 0
32 #ifdef __USE_GNU
34 static inline int
35 stack_getbounds(stack_t *sp)
37 pthread_attr_t attr;
38 int rc;
40 rc = pthread_getattr_np(pthread_self(), &attr);
41 if (rc)
42 return (rc);
44 rc = pthread_attr_getstack(&attr, &sp->ss_sp, &sp->ss_size);
45 if (rc == 0)
46 sp->ss_flags = 0;
48 pthread_attr_destroy(&attr);
50 return (rc);
53 static inline int
54 thr_stksegment(stack_t *sp)
56 int rc;
58 rc = stack_getbounds(sp);
59 if (rc)
60 return (rc);
63 * thr_stksegment() is expected to set sp.ss_sp to the high stack
64 * address, but the stack_getbounds() interface is expected to
65 * set sp.ss_sp to the low address. Adjust accordingly.
67 sp->ss_sp = (void *)(((uintptr_t)sp->ss_sp) + sp->ss_size);
68 sp->ss_flags = 0;
70 return (rc);
73 #endif /* __USE_GNU */
74 #endif /* _SYS_STACK_H */