Add threshold for thread local retired objects
[folly.git] / folly / experimental / hazptr / memory_resource.h
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17
18 #include <folly/experimental/hazptr/debug.h>
19
20 ////////////////////////////////////////////////////////////////////////////////
21 /// Disclaimer: This is intended only as a partial stand-in for
22 /// std::pmr::memory_resource (C++17) as needed for developing a
23 /// hazptr prototype.
24 ////////////////////////////////////////////////////////////////////////////////
25
26 #include <memory>
27
28 #include <folly/Portability.h>
29 #include <folly/lang/Align.h>
30
31 namespace folly {
32 namespace hazptr {
33
34 class memory_resource {
35  public:
36   virtual ~memory_resource() = default;
37   virtual void* allocate(
38       const size_t bytes,
39       const size_t alignment = max_align_v) = 0;
40   virtual void deallocate(
41       void* p,
42       const size_t bytes,
43       const size_t alignment = max_align_v) = 0;
44 };
45
46 memory_resource* get_default_resource();
47 void set_default_resource(memory_resource*);
48 memory_resource* new_delete_resource();
49
50 } // namespace hazptr
51 } // namespace folly