2 * Copyright 2017 Facebook, Inc.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #include <folly/experimental/hazptr/debug.h>
19 #include <folly/experimental/hazptr/hazptr.h>
26 class Node : public hazptr_obj_base<Node> {
33 Node(T v, Node* n) : value_(v), next_(n) {
51 auto pnode = new Node(val, head_.load());
52 while (!head_.compare_exchange_weak(pnode->next_, pnode));
58 Node* pnode = head_.load();
62 if (!hptr.try_protect(pnode, head_))
64 auto next = pnode->next_;
65 if (head_.compare_exchange_weak(pnode, next)) break;
74 std::atomic<Node*> head_ = {nullptr};
77 } // namespace folly {
78 } // namespace hazptr {