* Slight improvement to the guardians' performance.

This commit is contained in:
Abdulaziz Ghuloum 2007-09-01 01:21:11 -04:00
parent e5f7329d4d
commit 95f34409e6
2 changed files with 5 additions and 5 deletions

Binary file not shown.

View File

@ -635,12 +635,12 @@ forward_guardians(gc_t* gc){
while(src){
int i;
int n = src->count;
for(i=0; i<n; i++){
ikp a = add_object(gc, src->ptr[i], "prot");
dst = move_guarded(a, dst);
}
ik_ptr_page* next = src->next;
ik_munmap(src, sizeof(ik_ptr_page));
src->next = dst;
dst = src;
for(i=0; i<n; i++){
src->ptr[i] = add_object(gc, src->ptr[i], "prot");
}
src = next;
}
pcb->guardians[next_gen(gen)] = dst;