]> Cypherpunks.ru repositories - gostls13.git/blob - src/runtime/cgo/gcc_stack_darwin.c
runtime: get a better g0 stack bound in needm
[gostls13.git] / src / runtime / cgo / gcc_stack_darwin.c
1 // Copyright 2023 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 #include <pthread.h>
6 #include "libcgo.h"
7
8 void
9 x_cgo_getstackbound(G *g)
10 {
11         void* addr;
12         size_t size;
13         pthread_t p;
14
15         p = pthread_self();
16         addr = pthread_get_stackaddr_np(p); // high address (!)
17         size = pthread_get_stacksize_np(p);
18         g->stacklo = (uintptr)addr - size;
19         // NOTE: don't change g->stackhi. We are called from asmcgocall
20         // which saves the stack depth based on g->stackhi.
21 }