File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
targets/TARGET_RASPBERRYPI/TARGET_RP2040/pico-sdk/rp2_common/pico_runtime Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -160,19 +160,6 @@ void runtime_init(void) {
160
160
spin_locks_reset ();
161
161
irq_init_priorities ();
162
162
alarm_pool_init_default ();
163
-
164
- // Start and end points of the constructor list,
165
- // defined by the linker script.
166
- extern void (* __init_array_start )(void );
167
- extern void (* __init_array_end )(void );
168
-
169
- // Call each function in the list.
170
- // We have to take the address of the symbols, as __init_array_start *is*
171
- // the first function pointer, not the address of it.
172
- for (void (* * p )(void ) = & __init_array_start ; p < & __init_array_end ; ++ p ) {
173
- (* p )();
174
- }
175
-
176
163
}
177
164
178
165
void __exit (__unused int status ) {
You can’t perform that action at this time.
0 commit comments