函数源码 |
Source File:init\main.c |
Create Date:2022-07-27 15:15:48 |
首页 | Copyright©Brick |
787 788 789 790 791 792 793 794 795 796 | /* Call all constructor functions linked into the kernel. */ static void __init do_ctors( void ) { #ifdef CONFIG_CONSTRUCTORS ctor_fn_t *fn = (ctor_fn_t *) __ctors_start; for (; fn < (ctor_fn_t *) __ctors_end; fn++) (*fn)(); #endif } |