OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 #include "runtime.h" | 5 #include "runtime.h" |
6 #include "defs_GOOS_GOARCH.h" | 6 #include "defs_GOOS_GOARCH.h" |
7 #include "os_GOOS.h" | 7 #include "os_GOOS.h" |
8 #include "signal_unix.h" | 8 #include "signal_unix.h" |
9 #include "stack.h" | 9 #include "stack.h" |
10 | 10 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 runtime·close(fd); | 85 runtime·close(fd); |
86 } | 86 } |
87 | 87 |
88 void | 88 void |
89 runtime·goenvs(void) | 89 runtime·goenvs(void) |
90 { | 90 { |
91 runtime·goenvs_unix(); | 91 runtime·goenvs_unix(); |
92 | 92 |
93 // Register our thread-creation callback (see sys_darwin_{amd64,386}.s) | 93 // Register our thread-creation callback (see sys_darwin_{amd64,386}.s) |
94 // but only if we're not using cgo. If we are using cgo we need | 94 // but only if we're not using cgo. If we are using cgo we need |
95 » // to let the C pthread libary install its own thread-creation callback. | 95 » // to let the C pthread library install its own thread-creation callback
. |
96 if(!runtime·iscgo) { | 96 if(!runtime·iscgo) { |
97 if(runtime·bsdthread_register() != 0) { | 97 if(runtime·bsdthread_register() != 0) { |
98 if(runtime·getenv("DYLD_INSERT_LIBRARIES")) | 98 if(runtime·getenv("DYLD_INSERT_LIBRARIES")) |
99 runtime·throw("runtime: bsdthread_register error
(unset DYLD_INSERT_LIBRARIES)"); | 99 runtime·throw("runtime: bsdthread_register error
(unset DYLD_INSERT_LIBRARIES)"); |
100 runtime·throw("runtime: bsdthread_register error"); | 100 runtime·throw("runtime: bsdthread_register error"); |
101 } | 101 } |
102 } | 102 } |
103 | 103 |
104 } | 104 } |
105 | 105 |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 { | 583 { |
584 StackT st; | 584 StackT st; |
585 | 585 |
586 st.ss_sp = (void*)p; | 586 st.ss_sp = (void*)p; |
587 st.ss_size = n; | 587 st.ss_size = n; |
588 st.ss_flags = 0; | 588 st.ss_flags = 0; |
589 if(p == nil) | 589 if(p == nil) |
590 st.ss_flags = SS_DISABLE; | 590 st.ss_flags = SS_DISABLE; |
591 runtime·sigaltstack(&st, nil); | 591 runtime·sigaltstack(&st, nil); |
592 } | 592 } |
OLD | NEW |