Changeset 7f1c620 in mainline for generic/src/ipc/ipcrsc.c
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/ipc/ipcrsc.c
r991779c5 r7f1c620 139 139 * @return NULL on not found, otherwise pointer to call structure 140 140 */ 141 call_t * get_call( __nativecallid)141 call_t * get_call(unative_t callid) 142 142 { 143 143 link_t *lst; … … 148 148 lst != &TASK->answerbox.dispatched_calls; lst = lst->next) { 149 149 call = list_get_instance(lst, call_t, link); 150 if (( __native)call == callid) {150 if ((unative_t)call == callid) { 151 151 result = call; 152 152 break;
Note:
See TracChangeset
for help on using the changeset viewer.