source: rtems/bsps/arm/smdk2410/start/bspidle.c @ 8f8ccee

5
Last change on this file since 8f8ccee was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 461 bytes
Line 
1/*
2 *  BSP specific Idle thread
3 */
4
5/*
6 *  Copyright (c) 2000 Canon Research Centre France SA.
7 *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#include <bsp.h>
15
16void *bsp_idle_thread(uintptr_t ignored)
17{
18  while(1) {
19    __asm__ volatile ("MCR p15,0,r0,c7,c0,4     \n");
20  }
21  return NULL;
22}
23
Note: See TracBrowser for help on using the repository browser.