Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/syscall/syscall.c

    r63594c0 r6b10dab  
    4545#include <debug.h>
    4646#include <ddi/device.h>
    47 #include <interrupt.h>
    4847#include <ipc/sysipc.h>
    4948#include <synch/futex.h>
     
    6766#ifdef CONFIG_UDEBUG
    6867        /*
    69          * An istate_t-compatible record was created on the stack by the
    70          * low-level syscall handler. This is the userspace space state
    71          * structure.
    72          */
    73         THREAD->udebug.uspace_state = istate_get(THREAD);
    74 
    75         /*
    7668         * Early check for undebugged tasks. We do not lock anything as this
    7769         * test need not be precise in either direction.
     70         *
    7871         */
    7972        if (THREAD->udebug.active)
     
    10598                udebug_stoppable_end();
    10699        }
    107 
    108         /* Clear userspace state pointer */
    109         THREAD->udebug.uspace_state = NULL;
    110100#endif
    111101       
     
    130120        (syshandler_t) sys_task_get_id,
    131121        (syshandler_t) sys_task_set_name,
    132         (syshandler_t) sys_task_kill,
    133122        (syshandler_t) sys_program_spawn_loader,
    134123       
Note: See TracChangeset for help on using the changeset viewer.