Changeset 20d50a1 in mainline for arch/ia32/src/userspace.c
- Timestamp:
- 2006-01-13T13:02:45Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f9425006
- Parents:
- 0369911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/userspace.c
r0369911 r20d50a1 32 32 #include <arch.h> 33 33 #include <proc/thread.h> 34 #include <mm/ vm.h>34 #include <mm/as.h> 35 35 36 36 … … 48 48 __asm__ volatile ( 49 49 /* CLNT */ 50 "pushfl ;"51 "pop %%eax ;"52 "and $0x FFFFBFFF,%%eax;"53 "push %%eax ;"54 "popfl ;"50 "pushfl\n" 51 "pop %%eax\n" 52 "and $0xffffbfff,%%eax\n" 53 "push %%eax\n" 54 "popfl\n" 55 55 56 56 "pushl %0\n" … … 65 65 66 66 /* Unreachable */ 67 for(;;); 67 for(;;) 68 ; 68 69 }
Note:
See TracChangeset
for help on using the changeset viewer.