Changeset 430afff in mainline for uspace/srv/rd/rd.c
- Timestamp:
- 2009-03-02T17:33:01Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 13ec8055
- Parents:
- 4904de8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/rd/rd.c
r4904de8 r430afff 189 189 ipcarg_t callback_phonehash; 190 190 191 phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAP, DEVMAP_DRIVER, 0); 192 193 while (phone < 0) { 194 usleep(10000); 195 phone = ipc_connect_me_to(PHONE_NS, SERVICE_DEVMAP, 196 DEVMAP_DRIVER, 0); 191 phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_DEVMAP, DEVMAP_DRIVER, 0); 192 if (phone < 0) { 193 printf(NAME ": Failed to connect to device mapper\n"); 194 return -1; 197 195 } 198 196
Note:
See TracChangeset
for help on using the changeset viewer.