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

Delta Between Two Patch Sets: src/pkg/syscall/zsyscall_linux_power64le.go

Issue 127170043: [dev.power64] code review 127170043: syscall: auto-generated source for linux/power64 and li... (Closed)
Left Patch Set: diff -r 374c2eb01bdb2388e0291ae405439c3c0990ff9c https://code.google.com/p/go Created 9 years, 7 months ago
Right Patch Set: diff -r bdaa8020e5797a2a59b6d5932daec0d4d4c1da90 https://code.google.com/p/go Created 9 years, 7 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/syscall/zsyscall_linux_power64.go ('k') | src/pkg/syscall/zsysnum_linux_power64.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // mksyscall.pl syscall_linux.go syscall_linux_power64le.go 1 // mksyscall.pl syscall_linux.go syscall_linux_power64x.go
2 // MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT 2 // MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
3 3
4 package syscall 4 package syscall
5 5
6 import "unsafe" 6 import "unsafe"
7 7
8 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT 8 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
9 9
10 func open(path string, mode int, perm uint32) (fd int, err error) { 10 func open(path string, mode int, perm uint32) (fd int, err error) {
11 var _p0 *byte 11 var _p0 *byte
(...skipping 1910 matching lines...) Expand 10 before | Expand all | Expand 10 after
1922 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT 1922 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
1923 1923
1924 func Time(t *Time_t) (tt Time_t, err error) { 1924 func Time(t *Time_t) (tt Time_t, err error) {
1925 r0, _, e1 := RawSyscall(SYS_TIME, uintptr(unsafe.Pointer(t)), 0, 0) 1925 r0, _, e1 := RawSyscall(SYS_TIME, uintptr(unsafe.Pointer(t)), 0, 0)
1926 tt = Time_t(r0) 1926 tt = Time_t(r0)
1927 if e1 != 0 { 1927 if e1 != 0 {
1928 err = e1 1928 err = e1
1929 } 1929 }
1930 return 1930 return
1931 } 1931 }
LEFTRIGHT

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