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

Unified Diff: src/pkg/syscall/zsyscall_darwin_386.go

Issue 201043: code review 201043: syscall: on freebsd, darwin, give Kill same signature a... (Closed)
Patch Set: code review 201043: syscall: on freebsd, darwin, give Kill same signature a... Created 15 years, 1 month ago
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/syscall/syscall_freebsd.go ('k') | src/pkg/syscall/zsyscall_darwin_amd64.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/syscall/zsyscall_darwin_386.go
===================================================================
--- a/src/pkg/syscall/zsyscall_darwin_386.go
+++ b/src/pkg/syscall/zsyscall_darwin_386.go
@@ -370,7 +370,7 @@
return
}
-func Kill(pid int, signum int, posix int) (errno int) {
+func kill(pid int, signum int, posix int) (errno int) {
_, _, e1 := Syscall(SYS_KILL, uintptr(pid), uintptr(signum), uintptr(posix))
errno = int(e1)
return
« no previous file with comments | « src/pkg/syscall/syscall_freebsd.go ('k') | src/pkg/syscall/zsyscall_darwin_amd64.go » ('j') | no next file with comments »

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