ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

rtems task

2021-10-13 12:34:00  阅读:145  来源: 互联网

标签:src task .. start gdb entry rtems


 

 

[root@centos7 hello_world_c]# aarch64-rtems6-gdb   o-optimize/hello.exe 
GNU gdb (GDB) 10.1.90.20210409-git
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "--host=aarch64-linux-gnu --target=aarch64-rtems6".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from o-optimize/hello.exe...
(gdb) target remote :8889
Remote debugging using :8889
bsp_vector_table_begin () at ../../../bsps/aarch64/shared/start/start.S:55
55        mov x5, x1    /* machine type number or ~0 for DT boot */
(gdb) b 
Breakpoint 1 at 0x40008000: file ../../../bsps/aarch64/shared/start/start.S, line 55.
(gdb) b rtems_task Init
Function "rtems_task Init" not defined.
Make breakpoint pending on future shared library load? (y or [n]) n
(gdb) b rtems_task_create
Breakpoint 2 at 0x4000ee10: file ../../../cpukit/rtems/src/taskcreate.c, line 77.
(gdb) c
Continuing.

Breakpoint 2, rtems_task_create (name=name@entry=1430860064, initial_priority=initial_priority@entry=1, stack_size=stack_size@entry=10240, initial_modes=initial_modes@entry=256, attribute_set=attribute_set@entry=0, 
    id=id@entry=0x40108c8c <_ISR_Stack_area_begin+9164>) at ../../../cpukit/rtems/src/taskcreate.c:77
77        memset( &config, 0, sizeof( config ) );
(gdb) bt
#0  rtems_task_create (name=name@entry=1430860064, initial_priority=initial_priority@entry=1, stack_size=stack_size@entry=10240, initial_modes=initial_modes@entry=256, attribute_set=attribute_set@entry=0, 
    id=id@entry=0x40108c8c <_ISR_Stack_area_begin+9164>) at ../../../cpukit/rtems/src/taskcreate.c:77
#1  0x000000004000eeac in _RTEMS_tasks_Initialize_user_task () at ../../../cpukit/rtems/src/taskinitusers.c:35
#2  0x000000004000f060 in rtems_initialize_executive () at ../../../cpukit/sapi/src/exinit.c:116
#3  0x0000000040008c7c in boot_card (cmdline=<optimized out>) at ../../../bsps/shared/start/bootcard.c:55
#4  0x00000000400080cc in _el1_start () at ../../../bsps/aarch64/shared/start/start.S:308
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
(gdb) b rtems_task_start
Breakpoint 3 at 0x4000eee0: file ../../../cpukit/rtems/src/taskstart.c, line 33.
(gdb) b rtems_task_delete
Function "rtems_task_delete" not defined.
Make breakpoint pending on future shared library load? (y or [n]) n
(gdb) c
Continuing.

Breakpoint 3, rtems_task_start (id=167837697, entry_point=entry_point@entry=0x40008900 <Init>, argument=argument@entry=1074801928) at ../../../cpukit/rtems/src/taskstart.c:33
33        Thread_Entry_information entry = {
(gdb) bt
#0  rtems_task_start (id=167837697, entry_point=entry_point@entry=0x40008900 <Init>, argument=argument@entry=1074801928) at ../../../cpukit/rtems/src/taskstart.c:33
#1  0x000000004000eec0 in _RTEMS_tasks_Initialize_user_task () at ../../../cpukit/rtems/src/taskinitusers.c:47
#2  0x000000004000f060 in rtems_initialize_executive () at ../../../cpukit/sapi/src/exinit.c:116
#3  0x0000000040008c7c in boot_card (cmdline=<optimized out>) at ../../../bsps/shared/start/bootcard.c:55
#4  0x00000000400080cc in _el1_start () at ../../../bsps/aarch64/shared/start/start.S:308
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
(gdb) s
46        if ( entry_point == NULL ) {
(gdb) list
41        };
42        Thread_Control   *the_thread;
43        ISR_lock_Context  lock_context;
44        Status_Control    status;
45
46        if ( entry_point == NULL ) {
47          return RTEMS_INVALID_ADDRESS;
48        }
49
50        the_thread = _Thread_Get( id, &lock_context );
(gdb) b  _Thread_Start
Breakpoint 4 at 0x40013340: file ../../../cpukit/score/src/threadstart.c, line 35.
(gdb) c
Continuing.

Breakpoint 4, _Thread_Start (the_thread=0x40102090 <_RTEMS_tasks_Objects>, entry=entry@entry=0x40108c48 <_ISR_Stack_area_begin+9096>, lock_context=lock_context@entry=0x40108c40 <_ISR_Stack_area_begin+9088>) at ../../../cpukit/score/src/threadstart.c:35
35        _Thread_State_acquire_critical( the_thread, lock_context );
(gdb) b printf
Function "printf" not defined.
Make breakpoint pending on future shared library load? (y or [n]) n
(gdb) b test.c:13
Breakpoint 5 at 0x40008900: file test.c, line 13.
(gdb) c
Continuing.

Breakpoint 5, Init (ignored=1074801928) at test.c:13
13        printf( "\n\n*** HELLO WORLD TEST ***\n" );
(gdb) bt
#0  Init (ignored=1074801928) at test.c:13
#1  0x0000000040011e64 in _Thread_Handler () at ../../../cpukit/score/src/threadhandler.c:145
#2  0x0000000040011e00 in ?? ()
Backtrace stopped: not enough registers or memory available to unwind further
(gdb) c
Continuing.
[Inferior 1 (process 1) exited normally]
(gdb) quit
[root@centos7 hello_world_c]# 

 

标签:src,task,..,start,gdb,entry,rtems
来源: https://www.cnblogs.com/dream397/p/15401580.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有