Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 702 → Rev 703

/kernel/trunk/arch/ia32/src/userspace.c
31,7 → 31,7
#include <arch/types.h>
#include <arch.h>
#include <proc/thread.h>
#include <mm/vm.h>
#include <mm/as.h>
 
 
/** Enter userspace
47,11 → 47,11
 
__asm__ volatile (
/* CLNT */
"pushfl;"
"pop %%eax;"
"and $0xFFFFBFFF,%%eax;"
"push %%eax;"
"popfl;"
"pushfl\n"
"pop %%eax\n"
"and $0xffffbfff,%%eax\n"
"push %%eax\n"
"popfl\n"
 
"pushl %0\n"
"pushl %1\n"
64,5 → 64,6
: "eax");
/* Unreachable */
for(;;);
for(;;)
;
}