Changeset 7048773 in mainline for libipc/include/ipc.h


Ignore:
Timestamp:
2006-03-19T12:43:37Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4c61e60
Parents:
0a862b65
Message:

More IPC added syscall for hangup and some tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libipc/include/ipc.h

    r0a862b65 r7048773  
    3535
    3636typedef sysarg_t ipcarg_t;
    37 typedef sysarg_t ipc_data_t[IPC_CALL_LEN];
     37typedef struct {
     38        sysarg_t args[IPC_CALL_LEN];
     39        sysarg_t phoneid;
     40} ipc_data_t ;
    3841typedef struct {
    3942        unsigned long long taskid;
     
    6669                      unsigned long long *taskid);
    6770int ipc_connect_me_to(int phoneid, int arg1, int arg2);
     71int ipc_hangup(int phoneid);
    6872
    6973#endif
Note: See TracChangeset for help on using the changeset viewer.