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

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

Issue 12895043: code review 12895043: runtime: make SetFinalizer(x, f) accept any f for which... (Closed)
Left Patch Set: Created 11 years, 7 months ago
Right Patch Set: diff -r 28ca5af9a0d2 https://code.google.com/p/go/ Created 11 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:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/runtime/runtime.h ('k') | no next file » | 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 /* 5 /*
6 * Runtime type representation; master is type.go 6 * Runtime type representation; master is type.go
7 * 7 *
8 * The Type*s here correspond 1-1 to type.go's *rtype. 8 * The Type*s here correspond 1-1 to type.go's *rtype.
9 */ 9 */
10 10
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 bool dotdotdot; 91 bool dotdotdot;
92 Slice in; 92 Slice in;
93 Slice out; 93 Slice out;
94 }; 94 };
95 95
96 struct PtrType 96 struct PtrType
97 { 97 {
98 Type; 98 Type;
99 Type *elem; 99 Type *elem;
100 }; 100 };
101
102 // Here instead of in runtime.h because it uses the type names.
103 bool runtime·addfinalizer(void*, FuncVal *fn, uintptr, Type*, PtrType*);
104 bool runtime·getfinalizer(void *p, bool del, FuncVal **fn, uintptr *nret, Typ e**, PtrType**);
LEFTRIGHT

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