Changeset 897f2e76 in mainline


Ignore:
Timestamp:
2006-05-16T10:08:48Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1f385a68
Parents:
ad575d7
Message:

Small updates to IPC regarding AS_SEND.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/ipc/sysipc.c

    rad575d7 r897f2e76  
    6565static inline int is_forwardable(__native method)
    6666{
    67         if (method == IPC_M_PHONE_HUNGUP)
     67        if (method == IPC_M_PHONE_HUNGUP || method == IPC_M_AS_SEND)
    6868                return 0; /* This message is meant only for the receiver */
    6969        return 1;
     
    397397        int rc;
    398398
     399        /* Do not answer notification callids */
     400        if (callid & IPC_CALLID_NOTIFICATION)
     401                return 0;
     402
    399403        call = get_call(callid);
    400404        if (!call)
     
    422426        int saveddata = 0;
    423427        int rc;
     428
     429        /* Do not answer notification callids */
     430        if (callid & IPC_CALLID_NOTIFICATION)
     431                return 0;
    424432
    425433        call = get_call(callid);
Note: See TracChangeset for help on using the changeset viewer.