diff --git a/source/lib/omnitrace/library/components/numa_gotcha.cpp b/source/lib/omnitrace/library/components/numa_gotcha.cpp index ff6ba680b3..f97fff1473 100644 --- a/source/lib/omnitrace/library/components/numa_gotcha.cpp +++ b/source/lib/omnitrace/library/components/numa_gotcha.cpp @@ -74,10 +74,10 @@ numa_gotcha::configure() int>("numa_move_pages"); numa_gotcha_t::configure<5, void*, size_t>("numa_alloc"); numa_gotcha_t::configure<6, void*, size_t>("numa_alloc_local"); - numa_gotcha_t::configure<6, void*, size_t>("numa_alloc_interleaved"); - numa_gotcha_t::configure<7, void*, size_t, int>("numa_alloc_onnode"); - numa_gotcha_t::configure<8, void*, void*, size_t, size_t>("numa_realloc"); - numa_gotcha_t::configure<9, void, void*, size_t>("numa_free"); + numa_gotcha_t::configure<7, void*, size_t>("numa_alloc_interleaved"); + numa_gotcha_t::configure<8, void*, size_t, int>("numa_alloc_onnode"); + numa_gotcha_t::configure<9, void*, void*, size_t, size_t>("numa_realloc"); + numa_gotcha_t::configure<10, void, void*, size_t>("numa_free"); }; } diff --git a/source/lib/omnitrace/library/components/numa_gotcha.hpp b/source/lib/omnitrace/library/components/numa_gotcha.hpp index 78af096f75..46056294e5 100644 --- a/source/lib/omnitrace/library/components/numa_gotcha.hpp +++ b/source/lib/omnitrace/library/components/numa_gotcha.hpp @@ -38,7 +38,7 @@ namespace component { struct numa_gotcha : tim::component::base { - static constexpr size_t gotcha_capacity = 10; + static constexpr size_t gotcha_capacity = 11; using gotcha_data = tim::component::gotcha_data; using exit_func_t = void (*)(int);