Changeset 64fbeaa in rtems
- Timestamp:
- 10/06/22 06:47:14 (6 months ago)
- Branches:
- master
- Children:
- 985aaac0
- Parents:
- 45ee958
- git-author:
- Sebastian Huber <sebastian.huber@…> (10/06/22 06:47:14)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (10/14/22 08:48:23)
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/include/rtems/score/interr.h
r45ee958 r64fbeaa 231 231 INTERNAL_ERROR_RTEMS_INIT_TASK_CONSTRUCT_FAILED = 42, 232 232 INTERNAL_ERROR_IDLE_THREAD_CREATE_FAILED = 43, 233 INTERNAL_ERROR_NO_MEMORY_FOR_IDLE_TASK_STORAGE = 44 233 INTERNAL_ERROR_NO_MEMORY_FOR_IDLE_TASK_STORAGE = 44, 234 INTERNAL_ERROR_IDLE_THREAD_STACK_TOO_SMALL = 45 234 235 } Internal_errors_Core_list; 235 236 -
cpukit/sapi/src/interrtext.c
r45ee958 r64fbeaa 86 86 "INTERNAL_ERROR_RTEMS_INIT_TASK_CONSTRUCT_FAILED", 87 87 "INTERNAL_ERROR_IDLE_THREAD_CREATE_FAILED", 88 "INTERNAL_ERROR_NO_MEMORY_FOR_IDLE_TASK_STORAGE" 88 "INTERNAL_ERROR_NO_MEMORY_FOR_IDLE_TASK_STORAGE", 89 "INTERNAL_ERROR_IDLE_THREAD_STACK_TOO_SMALL" 89 90 }; 90 91 -
cpukit/score/src/threadcreateidle.c
r45ee958 r64fbeaa 85 85 ); 86 86 87 if ( config.stack_size < storage_size ) { 88 _Internal_error( INTERNAL_ERROR_IDLE_THREAD_STACK_TOO_SMALL ); 89 } 90 87 91 /* 88 92 * The entire workspace is zeroed during its initialization. Thus, all -
spec/build/testsuites/validation/grp.yml
r45ee958 r64fbeaa 20 20 - role: build-dependency 21 21 uid: fatal-idle-thread-create-failed 22 - role: build-dependency 23 uid: fatal-idle-thread-stack-too-small 22 24 - role: build-dependency 23 25 uid: fatal-init-task-construct-failed -
testsuites/sptests/spinternalerror02/init.c
r45ee958 r64fbeaa 50 50 51 51 rtems_test_assert( 52 error - 3 == INTERNAL_ERROR_ NO_MEMORY_FOR_IDLE_TASK_STORAGE52 error - 3 == INTERNAL_ERROR_IDLE_THREAD_STACK_TOO_SMALL 53 53 ); 54 54 }
Note: See TracChangeset
for help on using the changeset viewer.