Changeset 1564c4b in mainline for uspace/srv/bd/part/guid_part/guid_part.c
- Timestamp:
- 2011-06-08T19:39:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2af29ed
- Parents:
- e686889c (diff), 0eff68e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/part/guid_part/guid_part.c
re686889c r1564c4b 139 139 } 140 140 141 rc = block_init( indev_handle, 2048);141 rc = block_init(EXCHANGE_SERIALIZE, indev_handle, 2048); 142 142 if (rc != EOK) { 143 143 printf(NAME ": could not init libblock.\n"); … … 356 356 (void) async_share_out_finalize(callid, fs_va); 357 357 358 while ( 1) {358 while (true) { 359 359 callid = async_get_call(&call); 360 360 method = IPC_GET_IMETHOD(call); 361 switch (method) {362 case IPC_M_PHONE_HUNGUP:361 362 if (!method) { 363 363 /* The other side has hung up. */ 364 364 async_answer_0(callid, EOK); 365 365 return; 366 } 367 368 switch (method) { 366 369 case BD_READ_BLOCKS: 367 370 ba = MERGE_LOUP32(IPC_GET_ARG1(call),
Note:
See TracChangeset
for help on using the changeset viewer.