Added overlaying system calls.

This commit is contained in:
2015-04-25 22:51:34 +01:00
parent 717cb052a4
commit 8a781b72f6
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2015-04-25 Natalia Portillo <claunia@claunia.com>
* Interop/Apple/Interop.Apple.xattr.cs:
Added overlaying system calls.
2015-04-25 Natalia Portillo <claunia@claunia.com>
* Interop/Apple/Interop.Apple.stat.cs:

View File

@@ -74,6 +74,7 @@ internal static partial class Interop
/// <summary>
/// Gets an extended attribute value
/// Calls to system's getxattr(2)
/// </summary>
/// <param name="path">Path to the file.</param>
/// <param name="name">Name of the extended attribute.</param>
@@ -87,6 +88,7 @@ internal static partial class Interop
/// <summary>
/// Sets an extended attribute value
/// Calls to system's setxattr(2)
/// </summary>
/// <param name="path">Path to the file.</param>
/// <param name="name">Name of the extended attribute.</param>
@@ -100,6 +102,7 @@ internal static partial class Interop
/// <summary>
/// Removes an extended attribute
/// Calls to system's removexattr(2)
/// </summary>
/// <param name="path">Path to the file.</param>
/// <param name="name">Name of the extended attribute.</param>
@@ -110,6 +113,7 @@ internal static partial class Interop
/// <summary>
/// Lists the extended attributes from a file
/// Calls to system's listxattr(2)
/// </summary>
/// <param name="path">Path to the file.</param>
/// <param name="namebuf">Pointer to a buffer where an unordered list of null terminated UTF-8 strings wth the extended attributes names is to be stored.</param>