Changeset 7c3fb9b in mainline for kernel/arch/abs32le/include/arch/asm.h
- Timestamp:
- 2018-05-17T08:29:01Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6ff23ff
- Parents:
- fac0ac7
- git-author:
- Jiri Svoboda <jiri@…> (2018-05-16 17:28:17)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-05-17 08:29:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/arch/asm.h
rfac0ac7 r7c3fb9b 46 46 NO_TRACE static inline __attribute__((noreturn)) void cpu_halt(void) 47 47 { 48 /* On real hardware this should stop processing further 49 instructions on the CPU (and possibly putting it into 50 low-power mode) without any possibility of exitting 51 this function. */ 48 /* 49 * On real hardware this should stop processing further 50 * instructions on the CPU (and possibly putting it into 51 * low-power mode) without any possibility of exitting 52 * this function. 53 */ 52 54 53 55 while (true) … … 57 59 NO_TRACE static inline void cpu_sleep(void) 58 60 { 59 /* On real hardware this should put the CPU into low-power 60 mode. However, the CPU is free to continue processing 61 futher instructions any time. The CPU also wakes up 62 upon an interrupt. */ 61 /* 62 * On real hardware this should put the CPU into low-power 63 * mode. However, the CPU is free to continue processing 64 * futher instructions any time. The CPU also wakes up 65 * upon an interrupt. 66 */ 63 67 } 64 68
Note:
See TracChangeset
for help on using the changeset viewer.