Changeset cd66f3c in mainline
- Timestamp:
- 2012-01-23T16:30:47Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1f27f1d
- Parents:
- a6240a31
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loc.c
ra6240a31 rcd66f3c 111 111 ipc_call_t answer; 112 112 aid_t req = async_send_0(exch, LOC_CALLBACK_CREATE, &answer); 113 async_connect_to_me(exch, 0, 0, 0, loc_cb_conn, NULL);113 int rc = async_connect_to_me(exch, 0, 0, 0, loc_cb_conn, NULL); 114 114 loc_exchange_end(exch); 115 115 … … 117 117 return rc; 118 118 119 if (retval != EOK) {120 rc = retval;121 goto done;122 }119 sysarg_t retval; 120 async_wait_for(req, &retval); 121 if (retval != EOK) 122 return retval; 123 123 124 124 loc_callback_created = true;
Note:
See TracChangeset
for help on using the changeset viewer.