Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
|
- .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
-
|