Загрузка данных


Breakpoint 1, z_cstart () at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/init.c:777
777             z_sys_init_run_level(INIT_LEVEL_EARLY);
(gdb) n
780             arch_kernel_init();
(gdb) n
817             switch_to_main_thread(prepare_multithreading());
(gdb) n
780             arch_kernel_init();
(gdb) n
817             switch_to_main_thread(prepare_multithreading());
(gdb) n
780             arch_kernel_init();
(gdb) n
782             LOG_CORE_INIT();
(gdb) n
785             z_dummy_thread_init(&_thread_dummy);
(gdb) n
788             z_device_state_init();
(gdb) n
791             soc_early_init_hook();
(gdb) n
797             z_sys_init_run_level(INIT_LEVEL_PRE_KERNEL_1);
(gdb) n
801             z_sys_init_run_level(INIT_LEVEL_PRE_KERNEL_2);
(gdb) n
817             switch_to_main_thread(prepare_multithreading());
(gdb) s
prepare_multithreading () at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/init.c:680
680             z_sched_init();
(gdb) 
z_sched_init () at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/sched.c:965
965             init_ready_q(&_kernel.ready_q);
(gdb) 
init_ready_q (ready_q=<optimized out>) at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/sched.c:955
955             _priq_run_init(&ready_q->runq);
(gdb) 
z_priq_simple_init (pq=<optimized out>) at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/include/priority_q.h:62
62              sys_dlist_init(pq);
(gdb) 
sys_dlist_init (list=<optimized out>) at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/include/zephyr/sys/dlist.h:204
204             list->head = (sys_dnode_t *)list;
(gdb) 
prepare_multithreading () at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/init.c:692
692             _kernel.ready_q.cache = &z_main_thread;
(gdb) 
694             stack_ptr = z_setup_new_thread(&z_main_thread, z_main_stack,
(gdb) 
z_setup_new_thread (new_thread=new_thread@entry=0x800061a8 <z_main_thread>, stack=stack@entry=0x8001e0a0 <z_main_stack>, stack_size=stack_size@entry=2048, entry=entry@entry=0x6002e4a9 <bg_thread_main>, p1=0xe000e100, p1@entry=0x0, p2=0x10, p2@entry=0x0, p3=0xe000e18d, p3@entry=0x0, prio=142, prio@entry=0, options=1610620928, options@entry=1, name=0x42319d68 <error: Cannot access memory at address 0x42319d68>, name@entry=0x600f2ad5 "main") at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/thread.c:517
517             Z_ASSERT_VALID_PRIO(prio, entry);
(gdb) 
544             z_waitq_init(&new_thread->join_queue);
(gdb) 
z_waitq_init (w=0x80006210 <z_main_thread+104>) at /home/vovan/ZEPHYR_RTOS/zephyrproject/zephyr/kernel/include/wait_q.h:49
49              sys_dlist_init(&w->waitq);