Changeset 897f2e76 in mainline
- Timestamp:
- 2006-05-16T10:08:48Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1f385a68
- Parents:
- ad575d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/ipc/sysipc.c
rad575d7 r897f2e76 65 65 static inline int is_forwardable(__native method) 66 66 { 67 if (method == IPC_M_PHONE_HUNGUP )67 if (method == IPC_M_PHONE_HUNGUP || method == IPC_M_AS_SEND) 68 68 return 0; /* This message is meant only for the receiver */ 69 69 return 1; … … 397 397 int rc; 398 398 399 /* Do not answer notification callids */ 400 if (callid & IPC_CALLID_NOTIFICATION) 401 return 0; 402 399 403 call = get_call(callid); 400 404 if (!call) … … 422 426 int saveddata = 0; 423 427 int rc; 428 429 /* Do not answer notification callids */ 430 if (callid & IPC_CALLID_NOTIFICATION) 431 return 0; 424 432 425 433 call = get_call(callid);
Note:
See TracChangeset
for help on using the changeset viewer.