Changeset 925a21e in mainline for abi/include/ipc/methods.h


Ignore:
Timestamp:
2011-09-24T14:20:29Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5bf76c1
Parents:
867e2555 (diff), 1ab4aca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • abi/include/ipc/methods.h

    r867e2555 r925a21e  
    3333 */
    3434
    35 #ifndef KERN_IPC_METHODS_H_
    36 #define KERN_IPC_METHODS_H_
     35#ifndef ABI_IPC_METHODS_H_
     36#define ABI_IPC_METHODS_H_
    3737
    3838/* Well known phone descriptors */
     
    9696 *                       error is sent back to caller. Otherwise
    9797 *                       the call is accepted and the response is sent back.
    98  *                     - the hash of the client task is passed to userspace
    99  *                       (on the receiving side) as ARG4 of the call.
    10098 *                     - the hash of the allocated phone is passed to userspace
    10199 *                       (on the receiving side) as ARG5 of the call.
     
    171169#define IPC_M_DATA_READ  8
    172170
     171/** Authorize change of recipient's state in a third party task.
     172 * - ARG1 - user protocol defined data
     173 * - ARG2 - user protocol defined data
     174 * - ARG3 - user protocol defined data
     175 * - ARG5 - sender's phone to the third party task
     176 *
     177 * on EOK answer, the recipient must set:
     178 *
     179 * - ARG1 - recipient's phone to the third party task
     180 */
     181#define IPC_M_STATE_CHANGE_AUTHORIZE    9
     182
    173183/** Debug the recipient.
    174184 * - ARG1 - specifies the debug method (from udebug_method_t)
     
    176186 *
    177187 */
    178 #define IPC_M_DEBUG  9
     188#define IPC_M_DEBUG 10
    179189
    180190/** Last system IPC method */
Note: See TracChangeset for help on using the changeset viewer.