Changeset 569a51a in mainline for uspace/lib/c/generic/async.c
- Timestamp:
- 2017-12-08T21:17:27Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0016674
- Parents:
- 071a1ddb
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-07 16:35:29)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-08 21:17:27)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r071a1ddb r569a51a 2398 2398 } 2399 2399 2400 int phone = ipc_connect_kbox(id); 2401 if (phone < 0) { 2402 errno = phone; 2400 cap_handle_t phone; 2401 int rc = ipc_connect_kbox(id, &phone); 2402 if (rc != EOK) { 2403 errno = rc; 2403 2404 free(sess); 2404 2405 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.