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


Ignore:
Timestamp:
2012-08-20T23:21:41Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0343a1b
Parents:
642dc72
Message:

Separate system IPC logic into dedicated ops structure hooks.

File:
1 edited

Legend:

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

    r642dc72 re8039a86  
    9191sysipc_ops_t *sysipc_ops_get(sysarg_t imethod)
    9292{
    93         if (imethod < sizeof(sysipc_ops) / (sizeof(sysipc_ops_t)))
     93        if (imethod < sizeof(sysipc_ops) / (sizeof(sysipc_ops_t *)))
    9494                return sysipc_ops[imethod] ? sysipc_ops[imethod] : &null_ops;
    9595
Note: See TracChangeset for help on using the changeset viewer.