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

Side by Side Diff: src/pkg/runtime/runtime.h

Issue 12895043: code review 12895043: runtime: make SetFinalizer(x, f) accept any f for which... (Closed)
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:
View unified diff | Download patch
« no previous file with comments | « src/pkg/runtime/mgc0.c ('k') | src/pkg/runtime/type.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 MCache* runtime·allocmcache(void); 803 MCache* runtime·allocmcache(void);
804 void runtime·freemcache(MCache*); 804 void runtime·freemcache(MCache*);
805 void runtime·mallocinit(void); 805 void runtime·mallocinit(void);
806 void runtime·mprofinit(void); 806 void runtime·mprofinit(void);
807 bool runtime·ifaceeq_c(Iface, Iface); 807 bool runtime·ifaceeq_c(Iface, Iface);
808 bool runtime·efaceeq_c(Eface, Eface); 808 bool runtime·efaceeq_c(Eface, Eface);
809 uintptr runtime·ifacehash(Iface, uintptr); 809 uintptr runtime·ifacehash(Iface, uintptr);
810 uintptr runtime·efacehash(Eface, uintptr); 810 uintptr runtime·efacehash(Eface, uintptr);
811 void* runtime·malloc(uintptr size); 811 void* runtime·malloc(uintptr size);
812 void runtime·free(void *v); 812 void runtime·free(void *v);
813 bool runtime·addfinalizer(void*, FuncVal *fn, uintptr, void*);
814 void runtime·runpanic(Panic*); 813 void runtime·runpanic(Panic*);
815 uintptr runtime·getcallersp(void*); 814 uintptr runtime·getcallersp(void*);
816 int32 runtime·mcount(void); 815 int32 runtime·mcount(void);
817 int32 runtime·gcount(void); 816 int32 runtime·gcount(void);
818 void runtime·mcall(void(*)(G*)); 817 void runtime·mcall(void(*)(G*));
819 uint32 runtime·fastrand1(void); 818 uint32 runtime·fastrand1(void);
820 void runtime·rewindmorestack(Gobuf*); 819 void runtime·rewindmorestack(Gobuf*);
821 int32 runtime·timediv(int64, int32, int32*); 820 int32 runtime·timediv(int64, int32, int32*);
822 821
823 void runtime·setmg(M*, G*); 822 void runtime·setmg(M*, G*);
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
1039 bool runtime·mapiterkey(struct hash_iter*, void*); 1038 bool runtime·mapiterkey(struct hash_iter*, void*);
1040 Hmap* runtime·makemap_c(MapType*, int64); 1039 Hmap* runtime·makemap_c(MapType*, int64);
1041 1040
1042 Hchan* runtime·makechan_c(ChanType*, int64); 1041 Hchan* runtime·makechan_c(ChanType*, int64);
1043 void runtime·chansend(ChanType*, Hchan*, byte*, bool*, void*); 1042 void runtime·chansend(ChanType*, Hchan*, byte*, bool*, void*);
1044 void runtime·chanrecv(ChanType*, Hchan*, byte*, bool*, bool*); 1043 void runtime·chanrecv(ChanType*, Hchan*, byte*, bool*, bool*);
1045 bool runtime·showframe(Func*, G*); 1044 bool runtime·showframe(Func*, G*);
1046 void runtime·printcreatedby(G*); 1045 void runtime·printcreatedby(G*);
1047 1046
1048 void runtime·ifaceE2I(InterfaceType*, Eface, Iface*); 1047 void runtime·ifaceE2I(InterfaceType*, Eface, Iface*);
1049 1048 bool» runtime·ifaceE2I2(InterfaceType*, Eface, Iface*);
1050 uintptr runtime·memlimit(void); 1049 uintptr runtime·memlimit(void);
1051 1050
1052 // float.c 1051 // float.c
1053 extern float64 runtime·nan; 1052 extern float64 runtime·nan;
1054 extern float64 runtime·posinf; 1053 extern float64 runtime·posinf;
1055 extern float64 runtime·neginf; 1054 extern float64 runtime·neginf;
1056 extern uint64 ·nan; 1055 extern uint64 ·nan;
1057 extern uint64 ·posinf; 1056 extern uint64 ·posinf;
1058 extern uint64 ·neginf; 1057 extern uint64 ·neginf;
1059 #define ISNAN(f) ((f) != (f)) 1058 #define ISNAN(f) ((f) != (f))
1060 1059
1061 enum 1060 enum
1062 { 1061 {
1063 UseSpanType = 1, 1062 UseSpanType = 1,
1064 }; 1063 };
OLDNEW
« no previous file with comments | « src/pkg/runtime/mgc0.c ('k') | src/pkg/runtime/type.h » ('j') | no next file with comments »

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