brintos

brintos / llvm-project-archived public Read only

0
0
Text · 863 B · 407a1eb Raw
27 lines · c
1//===-- Definition of macros from time.h ---------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_LIBC_MACROS_LINUX_TIME_MACROS_H10#define LLVM_LIBC_MACROS_LINUX_TIME_MACROS_H11 12// clock type macros13#define CLOCK_REALTIME 014#define CLOCK_MONOTONIC 115#define CLOCK_PROCESS_CPUTIME_ID 216#define CLOCK_THREAD_CPUTIME_ID 317#define CLOCK_MONOTONIC_RAW 418#define CLOCK_REALTIME_COARSE 519#define CLOCK_MONOTONIC_COARSE 620#define CLOCK_BOOTTIME 721#define CLOCK_REALTIME_ALARM 822#define CLOCK_BOOTTIME_ALARM 923 24#define CLOCKS_PER_SEC 100000025 26#endif // LLVM_LIBC_MACROS_LINUX_TIME_MACROS_H27