Changeset 4c7b18e3 in rtems
- Timestamp:
- 05/22/18 07:14:07 (5 years ago)
- Branches:
- 5, master
- Children:
- 65f868c
- Parents:
- 5ec5503
- git-author:
- Sebastian Huber <sebastian.huber@…> (05/22/18 07:14:07)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/15/18 11:02:27)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/include/rtems/sysinit.h
r5ec5503 r4c7b18e3 1 1 /* 2 * Copyright (c) 2015 embedded brains GmbH. All rights reserved.2 * Copyright (c) 2015, 2018 embedded brains GmbH. All rights reserved. 3 3 * 4 4 * embedded brains GmbH … … 29 29 #define RTEMS_SYSINIT_BSP_WORK_AREAS 000100 30 30 #define RTEMS_SYSINIT_BSP_START 000200 31 #define RTEMS_SYSINIT_CPU_COUNTER 000300 31 32 #define RTEMS_SYSINIT_INITIAL_EXTENSIONS 000400 32 33 #define RTEMS_SYSINIT_MP_EARLY 000500 -
testsuites/sptests/spsysinit01/init.c
r5ec5503 r4c7b18e3 1 1 /* 2 * Copyright (c) 2015, 201 6embedded brains GmbH. All rights reserved.2 * Copyright (c) 2015, 2018 embedded brains GmbH. All rights reserved. 3 3 * 4 4 * embedded brains GmbH … … 68 68 BSP_START_PRE, 69 69 BSP_START_POST, 70 CPU_COUNTER_PRE, 71 CPU_COUNTER_POST, 70 72 INITIAL_EXTENSIONS_PRE, 71 73 INITIAL_EXTENSIONS_POST, … … 219 221 } 220 222 223 FIRST(RTEMS_SYSINIT_CPU_COUNTER) 224 { 225 /* 226 * Since the work performed here is BSP-specific, there is no way to test pre 227 * and post conditions. 228 */ 229 next_step(CPU_COUNTER_PRE); 230 } 231 232 LAST(RTEMS_SYSINIT_CPU_COUNTER) 233 { 234 next_step(CPU_COUNTER_POST); 235 } 236 221 237 FIRST(RTEMS_SYSINIT_INITIAL_EXTENSIONS) 222 238 {
Note: See TracChangeset
for help on using the changeset viewer.