27 lines · cpp
1//===-- Linux implementation of the tss_set function ----------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#include "tss_set.h"10 11#include "src/__support/common.h"12#include "src/__support/macros/config.h"13#include "src/__support/threads/thread.h"14 15#include <threads.h>16 17namespace LIBC_NAMESPACE_DECL {18 19LLVM_LIBC_FUNCTION(int, tss_set, (tss_t key, void *data)) {20 if (set_tss_value(key, data))21 return thrd_success;22 else23 return thrd_error;24}25 26} // namespace LIBC_NAMESPACE_DECL27