Changeset 61d2315 in mainline for uspace/lib/libblock/libblock.c


Ignore:
Timestamp:
2009-06-17T20:52:14Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
34ca870
Parents:
62140db
Message:

Disk I/O should be serialized until libblock switches to fibril synchronization.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libblock/libblock.c

    r62140db r61d2315  
    394394                         * the new contents from the device.
    395395                         */
     396                        async_serialize_start();
    396397                        rc = block_read(dev_handle, &bufpos, &buflen, &pos,
    397398                            b->data, cache->block_size, cache->block_size);
     399                        async_serialize_end();
    398400                        assert(rc == EOK);
    399401                }
Note: See TracChangeset for help on using the changeset viewer.