diff options
author | phk <phk@FreeBSD.org> | 2003-07-22 10:24:41 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-07-22 10:24:41 +0000 |
commit | c4a9334fa698660a5dd1a0c4fddb61ed0893fc58 (patch) | |
tree | 822136a990d18001b2db563f705887b258e810ce /sys/kern/init_main.c | |
parent | b5408a3e8f054d75ddbda2e0f17add2667916d6d (diff) | |
download | FreeBSD-src-c4a9334fa698660a5dd1a0c4fddb61ed0893fc58.zip FreeBSD-src-c4a9334fa698660a5dd1a0c4fddb61ed0893fc58.tar.gz |
Don't attempt to inline large functions mb_alloc() and mb_free(),
it more than doubles the text size of this file.
GCC has wisely ignored us on this previously
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r-- | sys/kern/init_main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 9af07a9..44e4193 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -211,6 +211,11 @@ restart: if ((*sipp)->subsystem == SI_SUB_DONE) continue; + if (0 && bootverbose) + printf("Sysinit %p(%p) subsys %x order %x\n", + (*sipp)->func, (*sipp)->udata, + (*sipp)->subsystem, (*sipp)->order); + /* Call function */ (*((*sipp)->func))((*sipp)->udata); |