Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intrusive shamap inner final #5152

Open
wants to merge 42 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
3f07882
Split tagged cache into .h and .ipp files cc
Oct 22, 2023
da72b7d
[remove] Scripts to measure and plot memory savings
Oct 25, 2023
da2ba2f
Replace SHAMapTreeNodes with intrusive pointers:
Oct 14, 2023
136db4f
[fold] Replace jthread with thread (mac does not have jthread yet)
Nov 21, 2023
19464a0
adding missing headers
vlntb Oct 14, 2024
c0659ff
[remove] Temporary change to measure maximum strong and weak referenc…
vlntb Oct 17, 2024
c20d442
[remove] Temporary change to measure max ref counts when switching fr…
vlntb Nov 5, 2024
f68dda8
[remove] stack trace printout
vlntb Nov 15, 2024
785fefc
sync with develop
vlntb Nov 15, 2024
aa1022d
clang-reformat
vlntb Nov 15, 2024
392ded3
clang-reformat
vlntb Nov 18, 2024
2510c2d
resolve levelization issues
vlntb Nov 18, 2024
f54e434
trigger GitHub actions
vlntb Nov 18, 2024
a2fa231
revert stack trace printout
vlntb Nov 19, 2024
82af26a
revert Temporary change to measure max ref counts when switching from…
vlntb Nov 19, 2024
d607e78
revert Temporary change to measure maximum strong and weak reference …
vlntb Nov 19, 2024
5819fa6
revert Scripts to measure and plot memory savings
vlntb Nov 19, 2024
4b875e9
inlining template functions
vlntb Nov 19, 2024
666d9ea
addressing review comments #1
vlntb Nov 19, 2024
ce3e00f
addressing review comments
vlntb Nov 20, 2024
8c27b3a
addressing review comments
vlntb Nov 20, 2024
ac9ef08
addressing review comments
vlntb Nov 21, 2024
3f8ab63
code cleanup
vlntb Nov 21, 2024
0050eab
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Nov 21, 2024
3beaa43
fixing ValueEntry checks based on the combined shared and weak
vlntb Nov 27, 2024
1fa8519
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Nov 27, 2024
5a1790b
sync with develop
vlntb Dec 6, 2024
d8588d0
new ASSERTs for Antithesis
vlntb Dec 13, 2024
d610533
moving to structured bindings
vlntb Dec 16, 2024
cc2563f
Addressing review comments #1
vlntb Dec 16, 2024
f9650ea
Addressing review comments #2
vlntb Dec 16, 2024
f54fb8f
Addressing review comments #3
vlntb Dec 16, 2024
5bdab50
messages in ASSERTS
vlntb Dec 16, 2024
0b613fe
clang-format
vlntb Dec 16, 2024
0df59d4
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Dec 16, 2024
a5ccaf5
Revert "moving to structured bindings"
vlntb Dec 16, 2024
eefdb89
sync with develop
vlntb Dec 17, 2024
6aa0a0a
fixed special case in isWeak
vlntb Dec 31, 2024
4d5f016
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Dec 31, 2024
2cdabe6
removed formatter override
vlntb Jan 3, 2025
f371d88
adding comment
vlntb Jan 3, 2025
da54c14
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Jan 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
adding missing headers
  • Loading branch information
vlntb committed Oct 14, 2024
commit 19464a0c6b31e670e565ae0f385dc4e3fa7738e8
4 changes: 3 additions & 1 deletion src/test/basics/IntrusiveShared_test.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
#include <test/unit_test/SuiteJournal.h>
#include <xrpl/basics/IntrusivePointer.ipp>
#include <xrpl/basics/IntrusiveRefCounts.h>
#include <xrpl/beast/unit_test.h>
#include <xrpl/beast/utility/Journal.h>
#include <test/unit_test/SuiteJournal.h>

#include <array>
#include <atomic>
#include <barrier>
#include <chrono>
#include <latch>
#include <optional>
#include <random>
#include <string>
#include <thread>
#include <variant>

namespace ripple {
namespace tests {
Loading