Changeset 7f1c620 in mainline for generic/include/ipc/ipc.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/ipc.h

    r991779c5 r7f1c620  
    165165typedef struct phone_s phone_t;
    166166typedef struct {
    167         __native args[IPC_CALL_LEN];
     167        unative_t args[IPC_CALL_LEN];
    168168        phone_t *phone;
    169169}ipc_data_t;
     
    215215        answerbox_t *callerbox;
    216216
    217         __native private; /**< Private data to internal IPC */
     217        unative_t private; /**< Private data to internal IPC */
    218218
    219219        ipc_data_t data;  /**< Data passed from/to userspace */
     
    221221
    222222extern void ipc_init(void);
    223 extern call_t * ipc_wait_for_call(answerbox_t *box, __u32 usec, int flags);
     223extern call_t * ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags);
    224224extern void ipc_answer(answerbox_t *box, call_t *request);
    225225extern int ipc_call(phone_t *phone, call_t *call);
     
    235235void ipc_cleanup(void);
    236236int ipc_phone_hangup(phone_t *phone);
    237 extern void ipc_backsend_err(phone_t *phone, call_t *call, __native err);
     237extern void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err);
    238238extern void ipc_print_task(task_id_t taskid);
    239239
Note: See TracChangeset for help on using the changeset viewer.