summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-04-09 15:08:48 +0200
committerHenning Baldersheim <balder@oath.com>2018-04-09 15:08:48 +0200
commita18e269da86fd6d5943fb2d61f75d0acd903c055 (patch)
tree29d3648e425805b7feb263135bb5a91cecc3d1cd /storage
parent18f5a1838165070a6a7362c9438479825e93137e (diff)
Consistent parameter naming in definition and implementation.
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/persistence/filestorage/filestorhandler.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/storage/src/vespa/storage/persistence/filestorage/filestorhandler.cpp b/storage/src/vespa/storage/persistence/filestorage/filestorhandler.cpp
index b067239a6f7..74baecbf026 100644
--- a/storage/src/vespa/storage/persistence/filestorage/filestorhandler.cpp
+++ b/storage/src/vespa/storage/persistence/filestorage/filestorhandler.cpp
@@ -53,21 +53,21 @@ FileStorHandler::pause()
}
bool
-FileStorHandler::schedule(const api::StorageMessage::SP& msg, uint16_t thread)
+FileStorHandler::schedule(const api::StorageMessage::SP& msg, uint16_t disk)
{
- return _impl->schedule(msg, thread);
+ return _impl->schedule(msg, disk);
}
FileStorHandler::LockedMessage
-FileStorHandler::getNextMessage(uint16_t thread, uint32_t stripeId)
+FileStorHandler::getNextMessage(uint16_t disk, uint32_t stripeId)
{
- return _impl->getNextMessage(thread, stripeId);
+ return _impl->getNextMessage(disk, stripeId);
}
FileStorHandler::LockedMessage &
-FileStorHandler::getNextMessage(uint16_t thread, uint32_t stripeId, LockedMessage& lck)
+FileStorHandler::getNextMessage(uint16_t disk, uint32_t stripeId, LockedMessage& lck)
{
- return _impl->getNextMessage(thread, stripeId, lck);
+ return _impl->getNextMessage(disk, stripeId, lck);
}
FileStorHandler::BucketLockInterface::SP