Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1398 → Rev 1399

/kernel/trunk/arch/ppc64/include/types.h
46,7 → 46,7
 
typedef __u64 ipl_t;
 
typedef __u32 __native;
typedef __u64 __native;
 
/** Page Table Entry. */
typedef struct {
/kernel/trunk/arch/ppc64/include/asm.h
138,7 → 138,13
{
}
 
void cpu_halt(void);
static inline void cpu_halt(void)
{
asm volatile (
"b 0\n"
);
}
 
void asm_delay_loop(__u32 t);
 
extern void userspace_asm(__address uspace_uarg, __address stack, __address entry);