Changeset 7f1c620 in mainline for generic/src/ipc/ipcrsc.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/ipcrsc.c

    r991779c5 r7f1c620  
    139139 * @return NULL on not found, otherwise pointer to call structure
    140140 */
    141 call_t * get_call(__native callid)
     141call_t * get_call(unative_t callid)
    142142{
    143143        link_t *lst;
     
    148148             lst != &TASK->answerbox.dispatched_calls; lst = lst->next) {
    149149                call = list_get_instance(lst, call_t, link);
    150                 if ((__native)call == callid) {
     150                if ((unative_t)call == callid) {
    151151                        result = call;
    152152                        break;
Note: See TracChangeset for help on using the changeset viewer.