~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to kernel/arch/mips32/src/smp/dorder.c

  • Committer: Pavel Rimsky
  • Date: 2010-02-20 20:54:53 UTC
  • mfrom: (292 head)
  • mto: This revision was merged to the branch mainline in revision 296.
  • Revision ID: pavel@pavel-laptop-20100220205453-70sim280j709dgp3
Synchronize with head.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
/** @file
33
33
 */
34
34
 
35
 
#include <arch/smp/dorder.h>
 
35
#include <smp/ipi.h>
 
36
 
 
37
#ifdef CONFIG_SMP
36
38
 
37
39
#define MSIM_DORDER_ADDRESS  0xB0000004
38
40
 
39
41
void ipi_broadcast_arch(int ipi)
40
42
{
41
 
#ifdef CONFIG_SMP
42
43
        *((volatile unsigned int *) MSIM_DORDER_ADDRESS) = 0x7FFFFFFF;
 
44
}
 
45
 
43
46
#endif
44
 
}
45
47
 
46
48
/** @}
47
49
 */