diff options
| author | Michael Kruse <llvm-project@meinersbur.de> | 2025-01-03 10:22:51 +0100 |
|---|---|---|
| committer | Michael Kruse <llvm-project@meinersbur.de> | 2025-01-03 10:22:51 +0100 |
| commit | 38500d63e14ce340236840f60d356cdefb56a52c (patch) | |
| tree | 17edbec446ce9b50d2f215a483b83afb293a635d /libc/src/time/linux/time.cpp | |
| parent | 1a3d5daaef7a6a63448a497da3eff7fc9e23df26 (diff) | |
| parent | 27f30029741ecf023baece7b3dde1ff9011ffefc (diff) | |
Merge branch 'main' into users/meinersbur/flang_runtime_split-headersusers/meinersbur/flang_runtime_split-headers
Diffstat (limited to 'libc/src/time/linux/time.cpp')
| -rw-r--r-- | libc/src/time/linux/time.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/libc/src/time/linux/time.cpp b/libc/src/time/linux/time.cpp deleted file mode 100644 index 20fb86e8e29d..000000000000 --- a/libc/src/time/linux/time.cpp +++ /dev/null @@ -1,32 +0,0 @@ -//===-- Linux implementation of the time function -------------------------===// -// -// 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 -// -//===----------------------------------------------------------------------===// - -#include "hdr/time_macros.h" -#include "src/__support/common.h" -#include "src/__support/macros/config.h" -#include "src/__support/time/linux/clock_gettime.h" -#include "src/errno/libc_errno.h" -#include "src/time/time_func.h" - -namespace LIBC_NAMESPACE_DECL { - -LLVM_LIBC_FUNCTION(time_t, time, (time_t * tp)) { - // TODO: Use the Linux VDSO to fetch the time and avoid the syscall. - struct timespec ts; - auto result = internal::clock_gettime(CLOCK_REALTIME, &ts); - if (!result.has_value()) { - libc_errno = result.error(); - return -1; - } - - if (tp != nullptr) - *tp = time_t(ts.tv_sec); - return time_t(ts.tv_sec); -} - -} // namespace LIBC_NAMESPACE_DECL |
