|
33 | 33 |
|
34 | 34 | bits 32
|
35 | 35 |
|
36 |
| - extern dispatch_interrupt |
37 |
| - extern dispatch_syscall |
| 36 | + extern handle_interrupt |
| 37 | + extern handle_syscall |
38 | 38 |
|
39 | 39 | ; ------------------------------------------------------------------------------
|
40 | 40 | ; FUNCTION: interrupt_entry
|
@@ -128,11 +128,11 @@ interrupt_entry:
|
128 | 128 | mov eax, SEG_SELECTOR(GDT_PER_CPU_DATA, RPL_KERNEL)
|
129 | 129 | mov gs, ax
|
130 | 130 |
|
131 |
| - ; set dispatch_interrupt() function argument |
| 131 | + ; set handle_interrupt() function argument |
132 | 132 | push esp ; First argument: trapframe
|
133 | 133 |
|
134 | 134 | ; call interrupt dispatching function
|
135 |
| - call dispatch_interrupt |
| 135 | + call handle_interrupt |
136 | 136 |
|
137 | 137 | ; remove argument(s) from stack
|
138 | 138 | add esp, 4
|
@@ -208,16 +208,16 @@ fast_intel_entry:
|
208 | 208 | mov eax, SEG_SELECTOR(GDT_PER_CPU_DATA, RPL_KERNEL)
|
209 | 209 | mov gs, ax
|
210 | 210 |
|
211 |
| - ; set dispatch_syscall() function argument |
| 211 | + ; set handle_syscall() function argument |
212 | 212 | ;
|
213 |
| - ; The message arguments, a ponter to which dispatch_syscall() takes |
| 213 | + ; The message arguments, a ponter to which handle_syscall() takes |
214 | 214 | ; as argument are at the beginning of the trap frame, so we can just
|
215 | 215 | ; pass the address of the trap frame.
|
216 | 216 | push esp ; First argument: message arguments
|
217 | 217 |
|
218 |
| - call dispatch_syscall |
| 218 | + call handle_syscall |
219 | 219 |
|
220 |
| - ; cleanup dispatch_syscall() argument |
| 220 | + ; cleanup handle_syscall() argument |
221 | 221 | add esp, 4
|
222 | 222 |
|
223 | 223 | pop eax ; 0
|
@@ -299,16 +299,16 @@ fast_amd_entry:
|
299 | 299 | mov ds, cx
|
300 | 300 | mov es, cx
|
301 | 301 |
|
302 |
| - ; set dispatch_syscall() function argument |
| 302 | + ; set handle_syscall() function argument |
303 | 303 | ;
|
304 |
| - ; The message arguments, a ponter to which dispatch_syscall() takes |
| 304 | + ; The message arguments, a ponter to which handle_syscall() takes |
305 | 305 | ; as argument are at the beginning of the trap frame, so we can just
|
306 | 306 | ; pass the address of the trap frame.
|
307 | 307 | push esp ; First argument: message arguments
|
308 | 308 |
|
309 |
| - call dispatch_syscall |
| 309 | + call handle_syscall |
310 | 310 |
|
311 |
| - ; cleanup dispatch_syscall() argument |
| 311 | + ; cleanup handle_syscall() argument |
312 | 312 | add esp, 4
|
313 | 313 |
|
314 | 314 | pop eax ; 0
|
|
0 commit comments