Changeset 7f1c620 in mainline for generic/src/ipc/ipc.c


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/src/ipc/ipc.c

    r991779c5 r7f1c620  
    6262static void _ipc_call_init(call_t *call)
    6363{
    64         memsetb((__address)call, sizeof(*call), 0);
     64        memsetb((uintptr_t)call, sizeof(*call), 0);
    6565        call->callerbox = &TASK->answerbox;
    6666        call->sender = TASK;
     
    186186 * message and sending it as a normal answer.
    187187 */
    188 void ipc_backsend_err(phone_t *phone, call_t *call, __native err)
     188void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err)
    189189{
    190190        call->data.phone = phone;
     
    309309 * - to distinguish between call and answer, look at call->flags
    310310 */
    311 call_t * ipc_wait_for_call(answerbox_t *box, __u32 usec, int flags)
     311call_t * ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags)
    312312{
    313313        call_t *request;
Note: See TracChangeset for help on using the changeset viewer.