2021-10-13 18:26:05 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│ vi: set et ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2024-06-21 03:46:42 +00:00
|
|
|
│ Copyright 2024 Justine Alexandra Roberts Tunney │
|
2021-10-13 18:26:05 +00:00
|
|
|
│ │
|
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
|
|
│ │
|
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-09-11 18:02:07 +00:00
|
|
|
#include "libc/thread/thread.h"
|
|
|
|
|
2024-06-21 03:46:42 +00:00
|
|
|
uintptr_t GetStackBottom(void) {
|
|
|
|
char *bottom;
|
|
|
|
void *stackaddr;
|
|
|
|
pthread_attr_t tattr;
|
|
|
|
size_t stacksize, guardsize;
|
|
|
|
pthread_getattr_np(pthread_self(), &tattr);
|
|
|
|
pthread_attr_getstack(&tattr, &stackaddr, &stacksize);
|
|
|
|
pthread_attr_getguardsize(&tattr, &guardsize);
|
|
|
|
bottom = stackaddr;
|
|
|
|
bottom += guardsize;
|
|
|
|
return (uintptr_t)bottom;
|
2022-05-27 20:25:46 +00:00
|
|
|
}
|