Path: blob/main/contrib/llvm-project/libc/include/llvm-libc-macros/linux/time-macros.h
213799 views
//===-- Definition of macros from time.h ---------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_MACROS_LINUX_TIME_MACROS_H9#define LLVM_LIBC_MACROS_LINUX_TIME_MACROS_H1011// clock type macros12#define CLOCK_REALTIME 013#define CLOCK_MONOTONIC 114#define CLOCK_PROCESS_CPUTIME_ID 215#define CLOCK_THREAD_CPUTIME_ID 316#define CLOCK_MONOTONIC_RAW 417#define CLOCK_REALTIME_COARSE 518#define CLOCK_MONOTONIC_COARSE 619#define CLOCK_BOOTTIME 720#define CLOCK_REALTIME_ALARM 821#define CLOCK_BOOTTIME_ALARM 92223#define CLOCKS_PER_SEC 10000002425#endif // LLVM_LIBC_MACROS_LINUX_TIME_MACROS_H262728