| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_FUCHSIA) | 6 #if defined(HOST_OS_FUCHSIA) |
| 7 | 7 |
| 8 #include "bin/file.h" | 8 #include "bin/file.h" |
| 9 | 9 |
| 10 #include <errno.h> // NOLINT | 10 #include <errno.h> // NOLINT |
| 11 #include <fcntl.h> // NOLINT | 11 #include <fcntl.h> // NOLINT |
| 12 #include <libgen.h> // NOLINT | 12 #include <libgen.h> // NOLINT |
| 13 #include <sys/mman.h> // NOLINT | 13 #include <sys/mman.h> // NOLINT |
| 14 #include <sys/stat.h> // NOLINT | 14 #include <sys/stat.h> // NOLINT |
| 15 #include <sys/types.h> // NOLINT | 15 #include <sys/types.h> // NOLINT |
| 16 #include <unistd.h> // NOLINT | 16 #include <unistd.h> // NOLINT |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 } | 576 } |
| 577 return ((file_1_info.st_ino == file_2_info.st_ino) && | 577 return ((file_1_info.st_ino == file_2_info.st_ino) && |
| 578 (file_1_info.st_dev == file_2_info.st_dev)) | 578 (file_1_info.st_dev == file_2_info.st_dev)) |
| 579 ? File::kIdentical | 579 ? File::kIdentical |
| 580 : File::kDifferent; | 580 : File::kDifferent; |
| 581 } | 581 } |
| 582 | 582 |
| 583 } // namespace bin | 583 } // namespace bin |
| 584 } // namespace dart | 584 } // namespace dart |
| 585 | 585 |
| 586 #endif // defined(TARGET_OS_FUCHSIA) | 586 #endif // defined(HOST_OS_FUCHSIA) |
| OLD | NEW |