Skip to content

Commit

Permalink
Instantiate a std::deque in cross platform code
Browse files Browse the repository at this point in the history
  • Loading branch information
swesonga committed Dec 17, 2024
1 parent 3030230 commit 576efda
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/hotspot/share/runtime/os.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@
# include <signal.h>
# include <errno.h>

#include <deque>
std::deque<std::pair<double, double>> q;

OSThread* os::_starting_thread = nullptr;
volatile unsigned int os::_rand_seed = 1234567;
int os::_processor_count = 0;
Expand Down

0 comments on commit 576efda

Please sign in to comment.