Changeset 156cb91 in rtems-schedsim
- Timestamp:
- 05/14/14 14:23:26 (10 years ago)
- Branches:
- master
- Children:
- 05a8dca
- Parents:
- 0caea4a
- git-author:
- Joel Sherrill <joel.sherrill@…> (05/14/14 14:23:26)
- git-committer:
- Joel Sherrill <joel.sherrill@…> (05/14/14 14:52:02)
- Location:
- schedsim/shell/shared
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
schedsim/shell/shared/Makefile.am
r0caea4a r156cb91 50 50 libschedsim_a_SOURCES += shell_cmdset.c 51 51 libschedsim_a_SOURCES += shell_makeargs.c 52 if HAS_SMP 53 libschedsim_a_SOURCES += main_taskgetaffinity.c 54 libschedsim_a_SOURCES += main_tasksetaffinity.c 55 endif 52 56 53 57 schedsim_shell_includedir = $(includedir)/schedsim -
schedsim/shell/shared/commands.c
r0caea4a r156cb91 24 24 extern rtems_shell_cmd_t rtems_shell_TASK_RESUME_Command; 25 25 extern rtems_shell_cmd_t rtems_shell_TASK_WAKE_AFTER_Command; 26 #if RTEMS_SMP 27 extern rtems_shell_cmd_t rtems_shell_TASK_GET_AFFINITY_Command; 28 extern rtems_shell_cmd_t rtems_shell_TASK_SET_AFFINITY_Command; 29 #endif 26 30 27 31 extern rtems_shell_cmd_t rtems_shell_CLOCK_TICK_Command; … … 51 55 &rtems_shell_TASK_RESUME_Command, 52 56 &rtems_shell_TASK_WAKE_AFTER_Command, 57 #if RTEMS_SMP 58 &rtems_shell_TASK_GET_AFFINITY_Command, 59 &rtems_shell_TASK_SET_AFFINITY_Command, 60 #endif 53 61 54 62 &rtems_shell_CLOCK_TICK_Command,
Note: See TracChangeset
for help on using the changeset viewer.