Changeset 14a1c097 in rtems-tools
- Timestamp:
- 06/01/18 22:32:59 (4 years ago)
- Branches:
- 5, master
- Children:
- c2d0d0e
- Parents:
- e04699b
- git-author:
- Vidushi Vashishth <reachvidu@…> (06/01/18 22:32:59)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/02/18 11:53:31)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
linkers/rtld-trace-buffer.ini
re04699b r14a1c097 27 27 header = "#include <rtems.h>" 28 28 header = "#include <rtems/rtems/tasksimpl.h>" 29 header = "#include <rtems/score/threadimpl.h>" 29 30 30 31 [trace-buffer-tracers] … … 85 86 { 86 87 /* @fixme Add the current CPU for SMP. */ 87 structThread_Control* tc = _Thread_Get_executing();88 return ( tc->current_priority << 8) | tc->real_priority;88 Thread_Control* tc = _Thread_Get_executing(); 89 return (_Thread_Get_priority(tc) << 8) | tc->Real_priority.priority; 89 90 } 90 91
Note: See TracChangeset
for help on using the changeset viewer.