Changeset c98e6ee in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2008-07-08T16:05:45Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f93f168
Parents:
b7f9087
Message:

Merge program-loader related stuff from dynload branch to trunk. (huge)

File:
1 edited

Legend:

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

    rb7f9087 rc98e6ee  
    3939#include <proc/thread.h>
    4040#include <proc/task.h>
     41#include <proc/program.h>
    4142#include <mm/as.h>
    4243#include <print.h>
     
    4748#include <ipc/sysipc.h>
    4849#include <synch/futex.h>
     50#include <synch/smc.h>
    4951#include <ddi/ddi.h>
    5052#include <security/cap.h>
     
    124126       
    125127        (syshandler_t) sys_task_get_id,
    126         (syshandler_t) sys_task_spawn,
     128        (syshandler_t) sys_program_spawn_loader,
    127129       
    128130        /* Synchronization related syscalls. */
    129131        (syshandler_t) sys_futex_sleep_timeout,
    130132        (syshandler_t) sys_futex_wakeup,
     133        (syshandler_t) sys_smc_coherence,
    131134       
    132135        /* Address space related syscalls. */
    133136        (syshandler_t) sys_as_area_create,
    134137        (syshandler_t) sys_as_area_resize,
     138        (syshandler_t) sys_as_area_change_flags,
    135139        (syshandler_t) sys_as_area_destroy,
    136140       
Note: See TracChangeset for help on using the changeset viewer.