1 //===-- Windows Time Macros Extension -------------------------------------===// 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-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLVM_LIBC_MACROS_WINDOWS_TIME_MACROS_EXT_H 10 #define LLVM_LIBC_MACROS_WINDOWS_TIME_MACROS_EXT_H 11 12 #define CLOCK_MONOTONIC 0 13 #define CLOCK_REALTIME 1 14 #define CLOCK_PROCESS_CPUTIME_ID 2 15 #define CLOCK_THREAD_CPUTIME_ID 3 16 17 #endif // LLVM_LIBC_MACROS_WINDOWS_TIME_MACROS_EXT_H 18