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

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

Issue 198085: code review 198085: finalizers; merge package malloc into package runtime (Closed)
Left Patch Set: code review 198085: finalizers; merge package malloc into package runtime Created 15 years, 1 month ago
Right Patch Set: code review 198085: finalizers; merge package malloc into package runtime Created 15 years, 1 month 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/mgc0.c ('k') | src/pkg/runtime/type.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
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 /* 5 /*
6 * basic types 6 * basic types
7 */ 7 */
8 typedef signed char int8; 8 typedef signed char int8;
9 typedef unsigned char uint8; 9 typedef unsigned char uint8;
10 typedef signed short int16; 10 typedef signed short int16;
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 519
520 Hchan* makechan(Type*, uint32); 520 Hchan* makechan(Type*, uint32);
521 void chansend(Hchan*, void*, bool*); 521 void chansend(Hchan*, void*, bool*);
522 void chanrecv(Hchan*, void*, bool*); 522 void chanrecv(Hchan*, void*, bool*);
523 void chanclose(Hchan*); 523 void chanclose(Hchan*);
524 bool chanclosed(Hchan*); 524 bool chanclosed(Hchan*);
525 int32 chanlen(Hchan*); 525 int32 chanlen(Hchan*);
526 int32 chancap(Hchan*); 526 int32 chancap(Hchan*);
527 527
528 void ifaceE2I(struct InterfaceType*, Eface, Iface*); 528 void ifaceE2I(struct InterfaceType*, Eface, Iface*);
LEFTRIGHT

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