From 7d0038c6686f326cd6b50a1349be6007cdc44b01 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 23 Mar 1991 14:45:15 +0000 Subject: [PATCH] Removed the call to os_flush_icache because it is unnecessary and it didn't work on older kernels. --- ldb/gc.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/ldb/gc.c b/ldb/gc.c index 9b11c7830..ec7107b6e 100644 --- a/ldb/gc.c +++ b/ldb/gc.c @@ -1,7 +1,7 @@ /* * Stop and Copy GC based on Cheney's algorithm. * - * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/gc.c,v 1.25 1991/02/16 01:00:04 wlott Exp $ + * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/gc.c,v 1.26 1991/03/23 14:45:15 wlott Exp $ * * Written by Christopher Hoover. */ @@ -264,14 +264,6 @@ collect_garbage() #endif size_retained = (new_space_free_pointer - new_space) * sizeof(lispobj); - /* Flush the icache. */ -#ifdef PRINTNOISE - printf("Flushing instruction cache ...\n"); -#endif - os_flush_icache((os_vm_address_t) new_space, - (os_vm_size_t) size_retained); - - /* Zero stack. */ #ifdef PRINTNOISE printf("Zeroing empty part of control stack ...\n"); -- GitLab