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

Delta Between Two Patch Sets: src/pkg/runtime/darwin/os.h

Issue 4452046: code review 4452046: runtime: turn "too many EPIPE" into real SIGPIPE (Closed)
Left Patch Set: Created 13 years, 11 months ago
Right Patch Set: diff -r 3c60a27e84c5 https://go.googlecode.com/hg Created 13 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:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/runtime/darwin/amd64/sys.s ('k') | src/pkg/runtime/freebsd/386/signal.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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 #define SIG_DFL ((void*)0) 5 #define SIG_DFL ((void*)0)
6 #define SIG_IGN ((void*)1) 6 #define SIG_IGN ((void*)1)
7 7
8 int32 runtime·bsdthread_create(void*, M*, G*, void(*)(void)); 8 int32 runtime·bsdthread_create(void*, M*, G*, void(*)(void));
9 void runtime·bsdthread_register(void); 9 void runtime·bsdthread_register(void);
10 int32 runtime·mach_msg_trap(MachHeader*, int32, uint32, uint32, uint32, uint32 , uint32); 10 int32 runtime·mach_msg_trap(MachHeader*, int32, uint32, uint32, uint32, uint32 , uint32);
11 uint32 runtime·mach_reply_port(void); 11 uint32 runtime·mach_reply_port(void);
12 void runtime·mach_semacquire(uint32); 12 void runtime·mach_semacquire(uint32);
13 uint32 runtime·mach_semcreate(void); 13 uint32 runtime·mach_semcreate(void);
14 void runtime·mach_semdestroy(uint32); 14 void runtime·mach_semdestroy(uint32);
15 void runtime·mach_semrelease(uint32); 15 void runtime·mach_semrelease(uint32);
16 void runtime·mach_semreset(uint32); 16 void runtime·mach_semreset(uint32);
17 uint32 runtime·mach_task_self(void); 17 uint32 runtime·mach_task_self(void);
18 uint32 runtime·mach_task_self(void); 18 uint32 runtime·mach_task_self(void);
19 uint32 runtime·mach_thread_self(void); 19 uint32 runtime·mach_thread_self(void);
20 uint32 runtime·mach_thread_self(void); 20 uint32 runtime·mach_thread_self(void);
21 21
22 struct Sigaction; 22 struct Sigaction;
23 void runtime·sigaction(uintptr, struct Sigaction*, struct Sigaction*); 23 void runtime·sigaction(uintptr, struct Sigaction*, struct Sigaction*);
24 24
25 struct StackT; 25 struct StackT;
26 void runtime·sigaltstack(struct StackT*, struct StackT*); 26 void runtime·sigaltstack(struct StackT*, struct StackT*);
27 void runtime·sigtramp(void); 27 void runtime·sigtramp(void);
28 void runtime·sigpanic(void); 28 void runtime·sigpanic(void);
29 void runtime·setitimer(int32, Itimerval*, Itimerval*); 29 void runtime·setitimer(int32, Itimerval*, Itimerval*);
30
31 void runtime·raisesigpipe(void);
LEFTRIGHT

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