git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
refactor: Optimize the context switch overhead
[lunaix-os.git]
/
lunaix-os
/
includes
/
arch
/
x86
/
interrupts.h
diff --git
a/lunaix-os/includes/arch/x86/interrupts.h
b/lunaix-os/includes/arch/x86/interrupts.h
index 6d3c4b1183f1b8bec5be4d5f981b9f15338ac106..0d7c815b541cfcb61b7050aeeea5656937ae6cd3 100644
(file)
--- a/
lunaix-os/includes/arch/x86/interrupts.h
+++ b/
lunaix-os/includes/arch/x86/interrupts.h
@@
-8,24
+8,25
@@
struct exec_param;
struct exec_param;
+struct regcontext
+{
+ reg32 eax;
+ reg32 ebx;
+ reg32 ecx;
+ reg32 edx;
+ reg32 edi;
+ reg32 ebp;
+ reg32 esi;
+ reg32 ds;
+ reg32 es;
+ reg32 fs;
+ reg32 gs;
+} __attribute__((packed));
+
typedef struct
{
unsigned int depth;
typedef struct
{
unsigned int depth;
- struct
- {
- reg32 eax;
- reg32 ebx;
- reg32 ecx;
- reg32 edx;
- reg32 edi;
- reg32 ebp;
- reg32 esi;
- reg32 ds;
- reg32 es;
- reg32 fs;
- reg32 gs;
- } __attribute__((packed)) registers;
-
+ struct regcontext registers;
union
{
reg32 esp;
union
{
reg32 esp;
@@
-35,7
+36,7
@@
typedef struct
struct exec_param
{
struct exec_param
{
- isr_param saved_prev_ctx;
+ isr_param
*
saved_prev_ctx;
u32_t vector;
u32_t err_code;
u32_t eip;
u32_t vector;
u32_t err_code;
u32_t eip;