Changeset dabe6333 in mainline for generic/include/ipc/ipc.h


Ignore:
Timestamp:
2006-03-16T15:56:40Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1ee9ced
Parents:
37e7d2b9
Message:

Added null console for buffering output when no real output available.
Added identity mapper for AMD64 that allows whole physical memory to be
accessed before paging is initialized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/ipc/ipc.h

    r37e7d2b9 rdabe6333  
    3838
    3939/* Flags for calls */
    40 #define IPC_CALL_ANSWERED      1 /**< This is answer to a call */
    41 #define IPC_CALL_STATIC_ALLOC  2 /**< This call will not be freed on error */
     40#define IPC_CALL_ANSWERED      0x1 /**< This is answer to a call */
     41#define IPC_CALL_STATIC_ALLOC  0x2 /**< This call will not be freed on error */
     42#define IPC_CALL_DISPATCHED    0x4 /**< Call is in dispatch queue */
    4243
    4344/* Flags for ipc_wait_for_call */
Note: See TracChangeset for help on using the changeset viewer.