Changeset a1026da in mainline for abi/include/abi/ipc/ipc.h


Ignore:
Timestamp:
2017-12-22T22:43:25Z (6 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1569a9b
Parents:
f04b5b3
git-author:
Jakub Jermar <jakub@…> (2017-12-22 21:47:09)
git-committer:
Jakub Jermar <jakub@…> (2017-12-22 22:43:25)
Message:

Introduce IPC_CALL_AUTO_REPLY call flag

Calls that never make it to userspace due to error are answered by the
kernel and decorated with the newly introduced IPC_CALL_AUTO_REPLY. This
gives the sender a way to reliably figure out that the recipient is
still waiting for the call.

File:
1 edited

Legend:

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

    rf04b5b3 ra1026da  
    6060#define IPC_CALL_NOTIF           (1 << 3)
    6161
     62/** The call was automatically answered by the kernel due to error */
     63#define IPC_CALL_AUTO_REPLY      (1 << 4)
     64
    6265/**
    6366 * Maximum buffer size allowed for IPC_M_DATA_WRITE and
Note: See TracChangeset for help on using the changeset viewer.