Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2389)

Side by Side Diff: src/pkg/runtime/os_darwin.c

Issue 8896045: code review 8896045: all: fix typos (Closed)
Patch Set: diff -r e920ea81e2fa https://code.google.com/p/go/ Created 11 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/runtime/chan.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « src/pkg/runtime/chan.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b