Changeset fbcfd458 in mainline for generic/include/ipc/sysipc.h


Ignore:
Timestamp:
2006-03-18T23:02:08Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b4b45210
Parents:
ba81cab
Message:

Untested better IPC functions.

  • There is some bug in MIPS, unpredicatbly sometimes the thread gets mapped

different frame for stack.

File:
1 edited

Legend:

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

    rba81cab rfbcfd458  
    3131
    3232__native sys_ipc_call_sync_fast(__native phoneid, __native method,
    33                                 __native arg1, __native *data);
    34 __native sys_ipc_call_sync(__native phoneid, __native *question,
    35                            __native *reply);
     33                                __native arg1, ipc_data_t *data);
     34__native sys_ipc_call_sync(__native phoneid, ipc_data_t *question,
     35                           ipc_data_t *reply);
    3636__native sys_ipc_call_async_fast(__native phoneid, __native method,
    3737                                 __native arg1, __native arg2);
    38 __native sys_ipc_call_async(__native phoneid, __native *data);
     38__native sys_ipc_call_async(__native phoneid, ipc_data_t *data);
    3939__native sys_ipc_answer_fast(__native callid, __native retval,
    4040                             __native arg1, __native arg2);
    41 __native sys_ipc_answer(__native callid, __native *data);
     41__native sys_ipc_answer(__native callid, ipc_data_t *data);
    4242__native sys_ipc_connect_to_me(__native phoneid, __native arg1,
    4343                               __native arg2, task_id_t *taskid);
     
    4848__native sys_ipc_forward_fast(__native callid, __native phoneid,
    4949                              __native method, __native arg1);
     50__native sys_ipc_hangup(int phoneid);
    5051
    5152
Note: See TracChangeset for help on using the changeset viewer.