Changeset e8039a86 in mainline for kernel/generic/include


Ignore:
Timestamp:
2012-08-20T23:21:41Z (13 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.

Location:
kernel/generic/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/config.h

    r642dc72 re8039a86  
    4747#define CONFIG_INIT_TASKS        32
    4848#define CONFIG_TASK_NAME_BUFLEN  32
     49
     50/**
     51 * Maximum buffer size allowed for IPC_M_DATA_WRITE and IPC_M_DATA_READ
     52 * requests.
     53 */
     54#define DATA_XFER_LIMIT  (64 * 1024)
    4955
    5056#ifndef __ASM__
  • kernel/generic/include/ipc/ipcrsc.h

    r642dc72 re8039a86  
    4040
    4141extern call_t *get_call(sysarg_t);
     42extern int phone_get(sysarg_t, phone_t **);
    4243extern int phone_alloc(task_t *);
    4344extern void phone_connect(int, answerbox_t *);
Note: See TracChangeset for help on using the changeset viewer.