blob: 5adbbfea5f572f601279c90923db951fa7f417b9 [file] [log] [blame]
//===-- Linux specific definitions for threads implementations. --*- 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_THREADS_LINUX_THREAD_UTILS_H
#define LLVM_LIBC_SRC_THREADS_LINUX_THREAD_UTILS_H
#include "thread_start_args.h"
#include <stdatomic.h>
#include <stdint.h>
namespace __llvm_libc {
struct ThreadParams {
static constexpr uintptr_t DefaultStackSize = 1 << 16; // 64 KB
static constexpr uint32_t ClearTIDValue = 0xABCD1234;
};
} // namespace __llvm_libc
#endif // LLVM_LIBC_SRC_THREADS_LINUX_THREAD_UTILS_H