Changeset 76d0981d in mainline for kernel/arch
- Timestamp:
- 2018-04-12T12:57:20Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3bacee1
- Parents:
- 9c514be
- git-author:
- Jiri Svoboda <jiri@…> (2018-04-11 18:18:43)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-04-12 12:57:20)
- Location:
- kernel/arch
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/userspace.c
r9c514be r76d0981d 36 36 #include <arch/cpu.h> 37 37 #include <arch/pm.h> 38 #include <stdbool.h> 38 39 #include <stdint.h> 39 40 #include <arch.h> … … 75 76 76 77 /* Unreachable */ 77 while ( 1);78 while (true); 78 79 } 79 80 -
kernel/arch/arm32/src/mach/beagleboardxm/beagleboardxm.c
r9c514be r76d0981d 44 44 #include <mm/km.h> 45 45 #include <ddi/ddi.h> 46 #include <stdbool.h> 46 47 47 48 static void bbxm_init(void); … … 130 131 static void bbxm_cpu_halt(void) 131 132 { 132 while ( 1)133 while (true) 133 134 ; 134 135 } -
kernel/arch/arm32/src/mach/beaglebone/beaglebone.c
r9c514be r76d0981d 47 47 #include <ddi/ddi.h> 48 48 #include <mm/km.h> 49 #include <stdbool.h> 49 50 50 51 #define BBONE_MEMORY_START 0x80000000 /* physical */ … … 159 160 static void bbone_cpu_halt(void) 160 161 { 161 while ( 1)162 while (true) 162 163 ; 163 164 } -
kernel/arch/arm32/src/mach/integratorcp/integratorcp.c
r9c514be r76d0981d 42 42 #include <genarch/srln/srln.h> 43 43 #include <console/console.h> 44 #include <stdbool.h> 44 45 #include <sysinfo/sysinfo.h> 45 46 #include <mm/page.h> … … 244 245 void icp_cpu_halt(void) 245 246 { 246 while ( 1);247 while (true); 247 248 } 248 249 -
kernel/arch/arm32/src/mach/raspberrypi/raspberrypi.c
r9c514be r76d0981d 47 47 #include <abi/fb/visuals.h> 48 48 #include <genarch/srln/srln.h> 49 #include <stdbool.h> 49 50 #include <sysinfo/sysinfo.h> 50 51 #include <interrupt.h> … … 128 129 static void raspberrypi_cpu_halt(void) 129 130 { 130 while ( 1) ;131 while (true) ; 131 132 } 132 133 -
kernel/arch/arm32/src/userspace.c
r9c514be r76d0981d 34 34 */ 35 35 36 #include <stdbool.h> 36 37 #include <userspace.h> 37 38 #include <arch/ras.h> … … 114 115 115 116 /* unreachable */ 116 while ( 1)117 while (true) 117 118 ; 118 119 } -
kernel/arch/ia32/src/userspace.c
r9c514be r76d0981d 35 35 #include <userspace.h> 36 36 #include <arch/pm.h> 37 #include <stdbool.h> 37 38 #include <stdint.h> 38 39 #include <arch.h> … … 79 80 80 81 /* Unreachable */ 81 while ( 1);82 while (true); 82 83 } 83 84 -
kernel/arch/ia64/src/ia64.c
r9c514be r76d0981d 40 40 #include <arch/interrupt.h> 41 41 #include <macros.h> 42 #include <stdbool.h> 42 43 #include <str.h> 43 44 #include <userspace.h> … … 252 253 (uintptr_t) kernel_uarg->uspace_uarg, psr.value, rsc.value); 253 254 254 while ( 1);255 while (true); 255 256 } 256 257 … … 258 259 { 259 260 pio_write_8((ioport8_t *)0x64, 0xfe); 260 while ( 1);261 while (true); 261 262 } 262 263 -
kernel/arch/mips32/src/mips32.c
r9c514be r76d0981d 42 42 #include <mem.h> 43 43 #include <userspace.h> 44 #include <stdbool.h> 44 45 #include <syscall/syscall.h> 45 46 #include <sysinfo/sysinfo.h> … … 172 173 (uintptr_t) kernel_uarg->uspace_entry); 173 174 174 while ( 1)175 while (true) 175 176 ; 176 177 } … … 195 196 { 196 197 ___halt(); 197 while ( 1)198 while (true) 198 199 ; 199 200 } -
kernel/arch/sparc64/src/sun4u/sparc64.c
r9c514be r76d0981d 50 50 #include <userspace.h> 51 51 #include <ddi/irq.h> 52 #include <stdbool.h> 52 53 #include <str.h> 53 54 #include <sysinfo/sysinfo.h> … … 169 170 170 171 /* Not reached */ 171 while ( 1)172 while (true) 172 173 ; 173 174 } … … 176 177 { 177 178 // TODO 178 while ( 1)179 while (true) 179 180 ; 180 181 } -
kernel/arch/sparc64/src/sun4v/sparc64.c
r9c514be r76d0981d 51 51 #include <userspace.h> 52 52 #include <ddi/irq.h> 53 #include <stdbool.h> 53 54 #include <str.h> 54 55 #include <arch/drivers/niagara.h> … … 167 168 168 169 /* Not reached */ 169 while ( 1)170 while (true) 170 171 ; 171 172 } … … 174 175 { 175 176 // TODO 176 while ( 1)177 while (true) 177 178 ; 178 179 }
Note:
See TracChangeset
for help on using the changeset viewer.