| // -*- C++ -*- | |
| //===----------------------------------------------------------------------===// | |
| // | |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | |
| // See https://llvm.org/LICENSE.txt for license information. | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
| // SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. | |
| // | |
| //===----------------------------------------------------------------------===// | |
| _LIBCUDACXX_BEGIN_NAMESPACE_CUDA | |
| template<thread_scope _Sco> | |
| class latch : public _CUDA_VSTD::__latch_base<_Sco> { | |
| public: | |
| _LIBCUDACXX_INLINE_VISIBILITY constexpr | |
| latch(_CUDA_VSTD::ptrdiff_t __count) | |
| : _CUDA_VSTD::__latch_base<_Sco>(__count) { | |
| } | |
| }; | |
| _LIBCUDACXX_END_NAMESPACE_CUDA | |