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

Delta Between Two Patch Sets: src/pkg/runtime/tiny/386/signal.c

Issue 1514041: code review 1514041: Remove last references to pchw, added gettime dummy fun... (Closed)
Left Patch Set: code review 1514041: Remove last references to pchw, added gettime dummy fun... Created 14 years, 9 months ago
Right Patch Set: code review 1514041: Remove last references to pchw, added gettime dummy fun... Created 14 years, 9 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/runtime/tiny/386/rt0.s ('k') | src/pkg/runtime/tiny/README » ('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 // just the write function 1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.·
2 4
3 extern void ·write(int fd, void *v, int len, int cap);» // slice, spelled out 5 #include "runtime.h"
4 6
5 int 7 extern void ·write(int32 fd, void *v, int32 len, int32 cap);» // slice, spelle d out
6 write(int fd, void *v, int len) 8
9 int32
10 write(int32 fd, void *v, int32 len)
7 { 11 {
8 ·write(fd, v, len, len); 12 ·write(fd, v, len, len);
9 return len; 13 return len;
10 } 14 }
11 15
12 void 16 void
13 gettime(int *a, int *b) { 17 gettime(int64*, int32*)
14 » return; 18 {
15 } 19 }
LEFTRIGHT

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