Changeset 48daf64 in mainline for kernel/generic/include


Ignore:
Timestamp:
2009-01-25T20:10:10Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a68ba8b
Parents:
161ae09
Message:

Introduce a new syscall: SYS_IPC_FORWARD_SLOW.

Location:
kernel/generic/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/sysipc.h

    r161ae09 r48daf64  
    5454unative_t sys_ipc_forward_fast(unative_t callid, unative_t phoneid,
    5555    unative_t method, unative_t arg1, unative_t arg2, int mode);
     56unative_t sys_ipc_forward_slow(unative_t callid, unative_t phoneid,
     57    ipc_data_t *data, int mode);
    5658unative_t sys_ipc_hangup(int phoneid);
    5759unative_t sys_ipc_register_irq(inr_t inr, devno_t devno, unative_t method,
  • kernel/generic/include/syscall/syscall.h

    r161ae09 r48daf64  
    6363        SYS_IPC_ANSWER_SLOW,
    6464        SYS_IPC_FORWARD_FAST,
     65        SYS_IPC_FORWARD_SLOW,
    6566        SYS_IPC_WAIT,
    6667        SYS_IPC_HANGUP,
Note: See TracChangeset for help on using the changeset viewer.