Changeset 7f1c620 in mainline for generic/include/ipc/sysipc.h


Ignore:
Timestamp:
2006-07-04T17:17:56Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

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

    r991779c5 r7f1c620  
    4040#include <arch/types.h>
    4141
    42 __native sys_ipc_call_sync_fast(__native phoneid, __native method,
    43                                 __native arg1, ipc_data_t *data);
    44 __native sys_ipc_call_sync(__native phoneid, ipc_data_t *question,
     42unative_t sys_ipc_call_sync_fast(unative_t phoneid, unative_t method,
     43                                unative_t arg1, ipc_data_t *data);
     44unative_t sys_ipc_call_sync(unative_t phoneid, ipc_data_t *question,
    4545                           ipc_data_t *reply);
    46 __native sys_ipc_call_async_fast(__native phoneid, __native method,
    47                                  __native arg1, __native arg2);
    48 __native sys_ipc_call_async(__native phoneid, ipc_data_t *data);
    49 __native sys_ipc_answer_fast(__native callid, __native retval,
    50                              __native arg1, __native arg2);
    51 __native sys_ipc_answer(__native callid, ipc_data_t *data);
    52 __native sys_ipc_wait_for_call(ipc_data_t *calldata, __u32 usec, int nonblocking);
    53 __native sys_ipc_forward_fast(__native callid, __native phoneid,
    54                               __native method, __native arg1);
    55 __native sys_ipc_hangup(int phoneid);
    56 __native sys_ipc_register_irq(int irq, irq_code_t *ucode);
    57 __native sys_ipc_unregister_irq(int irq);
     46unative_t sys_ipc_call_async_fast(unative_t phoneid, unative_t method,
     47                                 unative_t arg1, unative_t arg2);
     48unative_t sys_ipc_call_async(unative_t phoneid, ipc_data_t *data);
     49unative_t sys_ipc_answer_fast(unative_t callid, unative_t retval,
     50                             unative_t arg1, unative_t arg2);
     51unative_t sys_ipc_answer(unative_t callid, ipc_data_t *data);
     52unative_t sys_ipc_wait_for_call(ipc_data_t *calldata, uint32_t usec, int nonblocking);
     53unative_t sys_ipc_forward_fast(unative_t callid, unative_t phoneid,
     54                              unative_t method, unative_t arg1);
     55unative_t sys_ipc_hangup(int phoneid);
     56unative_t sys_ipc_register_irq(int irq, irq_code_t *ucode);
     57unative_t sys_ipc_unregister_irq(int irq);
    5858
    5959#endif
Note: See TracChangeset for help on using the changeset viewer.