Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Aug 9, 2024
1 parent d484996 commit 989d9dc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions worker/src/DepLibUring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ flatbuffers::Offset<FBS::LibUring::Dump> DepLibUring::FillBuffer(flatbuffers::Fl
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

return DepLibUring::liburing->FillBuffer(builder);
}
Expand All @@ -184,7 +184,7 @@ void DepLibUring::StartPollingCQEs()
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

DepLibUring::liburing->StartPollingCQEs();
}
Expand All @@ -193,7 +193,7 @@ void DepLibUring::StopPollingCQEs()
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

DepLibUring::liburing->StopPollingCQEs();
}
Expand All @@ -202,7 +202,7 @@ uint8_t* DepLibUring::GetSendBuffer()
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

return DepLibUring::liburing->GetSendBuffer();
}
Expand All @@ -212,7 +212,7 @@ bool DepLibUring::PrepareSend(
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

return DepLibUring::liburing->PrepareSend(sockfd, data, len, addr, cb);
}
Expand All @@ -222,7 +222,7 @@ bool DepLibUring::PrepareWrite(
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

return DepLibUring::liburing->PrepareWrite(sockfd, data1, len1, data2, len2, cb);
}
Expand All @@ -231,7 +231,7 @@ void DepLibUring::Submit()
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

DepLibUring::liburing->Submit();
}
Expand All @@ -240,7 +240,7 @@ void DepLibUring::SetActive()
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

DepLibUring::liburing->SetActive();
}
Expand All @@ -249,7 +249,7 @@ bool DepLibUring::IsActive()
{
MS_TRACE();

MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not supported");
MS_ASSERT(DepLibUring::enabled, "DepLibUring::liburing not enabled");

return DepLibUring::liburing->IsActive();
}
Expand Down

0 comments on commit 989d9dc

Please sign in to comment.