Changeset 466e95f7 in mainline for kernel/generic/src/ipc/sysipc_ops.c


Ignore:
Timestamp:
2012-10-03T21:08:54Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
faa45c17
Parents:
716185d
Message:

Add SYSIPC_OP macro to avoid repeating the same boilerplate code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/sysipc_ops.c

    r716185d r466e95f7  
    7676}
    7777
    78 void null_request_forget(call_t *call)
     78int null_request_forget(call_t *call)
    7979{
     80        return EOK;
    8081}
    8182
     
    8586}
    8687
    87 void null_answer_cleanup(call_t *call, ipc_data_t *data)
     88int null_answer_cleanup(call_t *call, ipc_data_t *data)
    8889{
     90        return EOK;
    8991}
    9092
Note: See TracChangeset for help on using the changeset viewer.