mirror of
https://github.com/claunia/Claunia.IO.git
synced 2025-12-16 19:24:44 +00:00
Correct documentation.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2015-04-26 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* Interop/Apple/Interop.Apple.statfs.cs:
|
||||
Correct documentation.
|
||||
|
||||
2015-04-26 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* Interop/Linux/Interop.Linux.uname.cs:
|
||||
|
||||
@@ -221,20 +221,20 @@ internal static partial class Interop
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Obtains information of the file pointed by <paramref name="path"/>.
|
||||
/// Calls to system's stat(2)
|
||||
/// Obtains information of the file system mounted at <paramref name="path"/>.
|
||||
/// Calls to system's statfs(2)
|
||||
/// </summary>
|
||||
/// <param name="path">Path to the file.</param>
|
||||
/// <param name="path">Path to the filesystem mount point.</param>
|
||||
/// <param name="buf"><see cref="Stat"/> on 32 bit systems and <see cref="Stat64"/> on 64 bit systems.</param>
|
||||
/// <returns>On success, 0. On failure, -1, and errno is set.</returns>
|
||||
[DllImport(Libraries.Libc, SetLastError = true)]
|
||||
public static extern int statfs(string path, out StatFS buf);
|
||||
|
||||
/// <summary>
|
||||
/// Obtains information of the file pointed by <paramref name="path"/>.
|
||||
/// Calls to system's stat64(2)
|
||||
/// Obtains information of the file system mounted at <paramref name="path"/>.
|
||||
/// Calls to system's statfs64(2)
|
||||
/// </summary>
|
||||
/// <param name="path">Path to the file.</param>
|
||||
/// <param name="path">Path to the filesystem mount point.</param>
|
||||
/// <param name="buf"><see cref="Stat64"/>.</param>
|
||||
/// <returns>On success, 0. On failure, -1, and errno is set.</returns>
|
||||
[DllImport(Libraries.Libc, SetLastError = true)]
|
||||
|
||||
Reference in New Issue
Block a user