Skip to content

Commit

Permalink
Start each object pool at 1K blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
GregUtas committed Jul 14, 2022
1 parent 6a8477d commit bb75351
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
24 changes: 12 additions & 12 deletions input/element.config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@ LocalTestUdp T
/ NoIngressQueueLength 1200
/ NoSpoolingMessageCount 400
NullifyObjectData T
NumOfBtIpBuffers 3
NumOfContexts 5
NumOfDipIpBuffers 1
/ NumOfBtIpBuffers 1
/ NumOfContexts 1
/ NumOfDipIpBuffers 1
/ NumOfEvents 1
/ NumOfHugeBuffers 1
NumOfIpBuffers 1
/ NumOfIpBuffers 1
/ NumOfLargeBuffers 1
/ NumOfMediaEndpts 1
/ NumOfMediumBuffers 1
NumOfMessages 3
NumOfMsgBuffers 2
NumOfMsgPorts 8
/ NumOfMessages 1
/ NumOfMsgBuffers 1
/ NumOfMsgPorts 1
/ NumOfPayloadInvokers 1
NumOfProtocolSMs 8
NumOfSbIpBuffers 3
NumOfServiceSMs 5
NumOfSmallBuffers 3
NumOfTimers 2
/ NumOfProtocolSMs 1
/ NumOfSbIpBuffers 1
/ NumOfServiceSMs 1
/ NumOfSmallBuffers 1
/ NumOfTimers 1
/ NumOfTinyBuffers 1
/ OutputPath [obsolete] ../rsc/excluded/output
ReinitOnSchedTimeout F
Expand Down
3 changes: 2 additions & 1 deletion src/ct/CxxScoped.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2342,7 +2342,8 @@ void Friend::FindReferent()
++Depth_;

SymbolView view = DeclaredGlobally;
const auto& mask = (GetFunction() != nullptr ? FRIEND_FUNCS : FRIEND_CLASSES);
const auto& mask =
(GetFunction() != nullptr ? FRIEND_FUNCS : FRIEND_CLASSES);
CxxScoped* ref = nullptr;

if(!searched_)
Expand Down
3 changes: 2 additions & 1 deletion src/nb/CliCommandSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ word CliCommandSet::ProcessCommand(CliThread& cli) const
// only CliCommands. If it is found, invoke it after updating the
// parser so that its parameters can be read.
//
const auto& commands = reinterpret_cast<const Registry<CliCommand>& >(Parms());
const auto& commands =
reinterpret_cast<const Registry<CliCommand>& >(Parms());

for(auto c = commands.First(); c != nullptr; c = commands.Next(*c))
{
Expand Down

0 comments on commit bb75351

Please # to comment.