Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2017-04-19 20:44:12 +0300
committerJan Kotas <jkotas@microsoft.com>2017-04-19 21:33:09 +0300
commit780f5499d6281260dfb48b9fd742886ba08fdc88 (patch)
tree345991715066baee7afbf3e300f45e9372950a05 /src/System.Private.CoreLib/shared
parenta252ba10ecf9a49124bb9e93e296b746e27d3aa8 (diff)
Merge pull request dotnet/coreclr#11070 from stephentoub/add_stat_fields
Add Dev/Ino fields to Interop.Sys.FileStatus Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'src/System.Private.CoreLib/shared')
-rw-r--r--src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs b/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs
index a8bc2ec7d..cda00ac6c 100644
--- a/src/System.Private.CoreLib/shared/Interop/Unix/System.Native/Interop.Stat.cs
+++ b/src/System.Private.CoreLib/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