You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- .text
- .globl kernel_thread_entry
- kernel_thread_entry: # void kernel_thread(void)
-
- pushl %edx # push arg
- call *%ebx # call fn
-
- pushl %eax # save the return value of fn(arg)
- call do_exit # call do_exit to terminate current thread
-
|