Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | //===-- Definition of suseconds_t type ------------------------------------===// |
|---|---|
| 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_TYPES_SUSECONDS_T_H |
| 10 | #define LLVM_LIBC_TYPES_SUSECONDS_T_H |
| 11 | |
| 12 | // Per posix: suseconds_t shall be a signed integer type capable of storing |
| 13 | // values at least in the range [-1, 1000000]. [...] the widths of [other |
| 14 | // types...] and suseconds_t are no greater than the width of type long. |
| 15 | |
| 16 | // The kernel expects 64 bit suseconds_t at least on x86_64. |
| 17 | typedef long suseconds_t; |
| 18 | |
| 19 | #endif // LLVM_LIBC_TYPES_SUSECONDS_T_H |
| 20 |
Warning: This file is not a C or C++ file. It does not have highlighting.
