Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:05

0001 /*
0002  *  BSP specific Idle thread
0003  */
0004 
0005 /*
0006  *  Copyright (c) 2000 Canon Research Centre France SA.
0007  *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
0008  *
0009  *  The license and distribution terms for this file may be
0010  *  found in the file LICENSE in this distribution or at
0011  *  http://www.rtems.org/license/LICENSE.
0012  */
0013 
0014 #include <bsp.h>
0015 
0016 void *bsp_idle_thread(uintptr_t ignored)
0017 {
0018   while(1) {
0019     __asm__ volatile ("MCR p15,0,r0,c7,c0,4     \n");
0020   }
0021   return NULL;
0022 }
0023