Changeset bc1f1c2 in mainline for kernel/arch/ia32/src/context.s


Ignore:
Timestamp:
2007-06-28T00:54:12Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
12f91130
Parents:
b9641ee
Message:

Goodbye pseudo threads, welcome fibrils.
The renaming might still be incomplete.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/context.s

    rb9641ee rbc1f1c2  
    4040context_save_arch:
    4141        movl 0(%esp),%eax       # the caller's return %eip
    42         movl 4(%esp),%edx       # address of the kernel_context variable to save context to
     42        movl 4(%esp),%edx       # address of the context variable to save context to
    4343
    4444        movl %esp,0(%edx)       # %esp -> ctx->sp
     
    6060#
    6161context_restore_arch:
    62         movl 4(%esp),%eax       # address of the kernel_context variable to restore context from
     62        movl 4(%esp),%eax       # address of the context variable to restore context from
    6363        movl 0(%eax),%esp       # ctx->sp -> %esp
    6464        movl 4(%eax),%edx       # ctx->pc -> %edx
Note: See TracChangeset for help on using the changeset viewer.