Skip to content

Commit

Permalink
Tests: fix interprocess test case
Browse files Browse the repository at this point in the history
Fixes: #103
  • Loading branch information
timblechmann committed Sep 25, 2024
1 parent a748e6c commit 26a0337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/queue_interprocess_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ int main( int argc, char* argv[] )
}
} remover;

managed_shared_memory segment( create_only, "boost_queue_interprocess_test_shm", 262144 );
managed_shared_memory segment( create_only, "boost_queue_interprocess_test_shm", 524288 );
ShmemAllocator alloc_inst( segment.get_segment_manager() );

queue* q = segment.construct< queue >( "queue" )( alloc_inst );
Expand Down

0 comments on commit 26a0337

Please sign in to comment.