[MemProf] Templatize CallStackRadixTreeBuilder (NFC) (#117014)
[llvm-project.git] / libc / src / sys / stat / linux / fstat.cpp
blob35cf8f08f782d25e3fa8125299d1aa13678343fa
1 //===-- Linux implementation of fstat -------------------------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "src/sys/stat/fstat.h"
10 #include "kernel_statx.h"
11 #include "src/__support/macros/config.h"
12 #include "src/errno/libc_errno.h"
14 #include "src/__support/common.h"
16 #include "hdr/fcntl_macros.h"
17 #include <sys/stat.h>
19 namespace LIBC_NAMESPACE_DECL {
21 LLVM_LIBC_FUNCTION(int, fstat, (int fd, struct stat *statbuf)) {
22 int err = statx(fd, "", AT_EMPTY_PATH, statbuf);
23 if (err != 0) {
24 libc_errno = err;
25 return -1;
27 return 0;
30 } // namespace LIBC_NAMESPACE_DECL