Changeset da585a52 in mainline for arch/ia32/src/userspace.c


Ignore:
Timestamp:
2005-05-11T18:58:54Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7568a9f
Parents:
93ca46f
Message:

doxygen-style comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/userspace.c

    r93ca46f rda585a52  
    3434#include <mm/vm.h>
    3535
     36
     37/** Enter userspace
     38 *
     39 * Change CPU protection level to 3, enter userspace.
     40 *
     41 */
    3642void userspace(void)
    3743{
     
    4854            "iret"
    4955            : : "i" (selector(UDATA_DES) | PL_USER), "i" (USTACK_ADDRESS+THREAD_STACK_SIZE-1000), "r" (pri), "i" (selector(UTEXT_DES) | PL_USER), "i" (UTEXT_ADDRESS));
    50         /* NOT REACHED */
    51 
     56       
     57        /* Unreachable */
    5258        for(;;);
    5359}
Note: See TracChangeset for help on using the changeset viewer.