Consistently have the namespace closing comment
[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 <folly/Portability.h>
27 #include <memory>
28
29 namespace folly {
30 namespace hazptr {
31
32 class memory_resource {
33  public:
34   virtual ~memory_resource() = default;
35   virtual void* allocate(
36       const size_t bytes,
37       const size_t alignment = folly::max_align_v) = 0;
38   virtual void deallocate(
39       void* p,
40       const size_t bytes,
41       const size_t alignment = folly::max_align_v) = 0;
42 };
43
44 memory_resource* get_default_resource();
45 void set_default_resource(memory_resource*);
46 memory_resource* new_delete_resource();
47
48 } // namespace hazptr
49 } // namespace folly