From c6d7b247e8d895889ee0c273da8738637e0e5717 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Wed, 19 Apr 2017 11:20:42 -0400 Subject: [PATCH] Add Dev/Ino fields to Interop.Sys.FileStatus --- src/mscorlib/shared/Interop/Unix/System.Native/Interop.Stat.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mscorlib/shared/Interop/Unix/System.Native/Interop.Stat.cs b/src/mscorlib/shared/Interop/Unix/System.Native/Interop.Stat.cs index a8bc2ec..cda00ac 100644 --- a/src/mscorlib/shared/Interop/Unix/System.Native/Interop.Stat.cs +++ b/src/mscorlib/shared/Interop/Unix/System.Native/Interop.Stat.cs @@ -27,6 +27,8 @@ internal static partial class Interop internal long MTime; internal long CTime; internal long BirthTime; + internal long Dev; + internal long Ino; } internal static class FileTypes -- 2.7.4