summaryrefslogtreecommitdiff
path: root/libc/src/threads/linux/Thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/threads/linux/Thread.h')
-rw-r--r--libc/src/threads/linux/Thread.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/libc/src/threads/linux/Thread.h b/libc/src/threads/linux/Thread.h
deleted file mode 100644
index de58ae4c64c6..000000000000
--- a/libc/src/threads/linux/Thread.h
+++ /dev/null
@@ -1,23 +0,0 @@
-//===-- 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 <stdint.h>
-
-namespace __llvm_libc {
-
-struct ThreadParams {
- static constexpr uintptr_t DEFAULT_STACK_SIZE = 1 << 16; // 64 KB
- static constexpr uint32_t CLEAR_TID_VALUE = 0xABCD1234;
-};
-
-} // namespace __llvm_libc
-
-#endif // LLVM_LIBC_SRC_THREADS_LINUX_THREAD_UTILS_H