diff options
Diffstat (limited to 'usr/src/uts/sun4/os/startup.c')
-rw-r--r-- | usr/src/uts/sun4/os/startup.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr/src/uts/sun4/os/startup.c b/usr/src/uts/sun4/os/startup.c index d142820fc1..68c5f0b215 100644 --- a/usr/src/uts/sun4/os/startup.c +++ b/usr/src/uts/sun4/os/startup.c @@ -2130,9 +2130,6 @@ post_startup(void) #ifdef PTL1_PANIC_DEBUG init_ptl1_thread(); #endif /* PTL1_PANIC_DEBUG */ - - if (&cif_init) - cif_init(); } #ifdef PTL1_PANIC_DEBUG @@ -3138,3 +3135,10 @@ kobj_texthole_free(caddr_t addr, size_t size) ASSERT(texthole_arena[arena] != NULL); vmem_free(texthole_arena[arena], addr, size); } + +void +release_bootstrap(void) +{ + if (&cif_init) + cif_init(); +} |