Changeset 15039b67 in mainline for libc/generic/async.c
- Timestamp:
- 2006-06-11T17:05:41Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f8d5b85
- Parents:
- 290c0db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/async.c
r290c0db r15039b67 449 449 { 450 450 /* Unrouted call - do some default behaviour */ 451 switch (IPC_GET_METHOD(*call)) { 452 case IPC_M_INTERRUPT: 451 if ((callid & IPC_CALLID_NOTIFICATION)) { 453 452 in_interrupt_handler = 1; 454 453 (*interrupt_received)(callid,call); 455 454 in_interrupt_handler = 0; 456 455 return; 456 } 457 458 switch (IPC_GET_METHOD(*call)) { 457 459 case IPC_M_CONNECT_ME_TO: 458 460 /* Open new connection with thread etc. */
Note:
See TracChangeset
for help on using the changeset viewer.