summaryrefslogtreecommitdiff
path: root/libc/src/threads/linux/Thread.h
blob: 5adbbfea5f572f601279c90923db951fa7f417b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//===-- 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