snmalloc-sys 0.7.4

rust raw bindings of snmalloc.
Documentation
#pragma once

#include "../ds/ds.h"
#include "empty_range.h"

namespace snmalloc
{
  /**
   * Protect the ParentRange with a spin lock.
   *
   * Accesses via the ancestor() mechanism will bypass the lock and so
   * should be used only where the resulting data races are acceptable.
   */
  struct LockRange
  {
    template<typename ParentRange = EmptyRange<>>
    class Type : public ContainsParent<ParentRange>
    {
      using ContainsParent<ParentRange>::parent;

      /**
       * This is infrequently used code, a spin lock simplifies the code
       * considerably, and should never be on the fast path.
       */
      CombiningLock spin_lock{};

    public:
      static constexpr bool Aligned = ParentRange::Aligned;

      using ChunkBounds = typename ParentRange::ChunkBounds;

      static constexpr bool ConcurrencySafe = true;

      constexpr Type() = default;

      CapPtr<void, ChunkBounds> alloc_range(size_t size)
      {
        CapPtr<void, ChunkBounds> result;
        with(spin_lock, [&]() {
          {
            result = parent.alloc_range(size);
          }
        });
        return result;
      }

      void dealloc_range(CapPtr<void, ChunkBounds> base, size_t size)
      {
        with(spin_lock, [&]() { parent.dealloc_range(base, size); });
      }
    };
  };
} // namespace snmalloc