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

Unified Diff: src/pkg/runtime/mfinal.c

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
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/runtime/malloc.goc ('k') | src/pkg/runtime/mfinal_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/runtime/mfinal.c
===================================================================
--- a/src/pkg/runtime/mfinal.c
+++ b/src/pkg/runtime/mfinal.c
@@ -5,6 +5,7 @@
#include "runtime.h"
#include "arch_GOARCH.h"
#include "malloc.h"
+#include "type.h"
enum { debug = 0 };
@@ -13,7 +14,8 @@
{
FuncVal *fn;
uintptr nret;
- void *ot;
+ Type *fint;
+ PtrType *ot;
};
// Finalizer hash table. Direct hash, linear scan, at most 3/4 full.
@@ -43,7 +45,7 @@
} fintab[TABSZ];
static void
-addfintab(Fintab *t, void *k, FuncVal *fn, uintptr nret, void *ot)
+addfintab(Fintab *t, void *k, FuncVal *fn, uintptr nret, Type *fint, PtrType *ot)
{
int32 i, j;
@@ -68,6 +70,7 @@
t->key[i] = k;
t->val[i].fn = fn;
t->val[i].nret = nret;
+ t->val[i].fint = fint;
t->val[i].ot = ot;
}
@@ -126,7 +129,7 @@
for(i=0; i<tab->max; i++) {
k = tab->key[i];
if(k != nil && k != (void*)-1)
- addfintab(&newtab, k, tab->val[i].fn, tab->val[i].nret, tab->val[i].ot);
+ addfintab(&newtab, k, tab->val[i].fn, tab->val[i].nret, tab->val[i].fint, tab->val[i].ot);
}
runtime·free(tab->key);
@@ -140,7 +143,7 @@
}
bool
-runtime·addfinalizer(void *p, FuncVal *f, uintptr nret, void *ot)
+runtime·addfinalizer(void *p, FuncVal *f, uintptr nret, Type *fint, PtrType *ot)
{
Fintab *tab;
byte *base;
@@ -169,7 +172,7 @@
resizefintab(tab);
}
- addfintab(tab, p, f, nret, ot);
+ addfintab(tab, p, f, nret, fint, ot);
runtime·setblockspecial(p, true);
runtime·unlock(tab);
return true;
@@ -178,7 +181,7 @@
// get finalizer; if del, delete finalizer.
// caller is responsible for updating RefHasFinalizer (special) bit.
bool
-runtime·getfinalizer(void *p, bool del, FuncVal **fn, uintptr *nret, void **ot)
+runtime·getfinalizer(void *p, bool del, FuncVal **fn, uintptr *nret, Type **fint, PtrType **ot)
{
Fintab *tab;
bool res;
@@ -192,6 +195,7 @@
return false;
*fn = f.fn;
*nret = f.nret;
+ *fint = f.fint;
*ot = f.ot;
return true;
}
« no previous file with comments | « src/pkg/runtime/malloc.goc ('k') | src/pkg/runtime/mfinal_test.go » ('j') | no next file with comments »

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