mirror of
https://github.com/claunia/Claunia.IO.git
synced 2025-12-16 19:24:44 +00:00
Added overlaying system calls.
This commit is contained in:
@@ -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>
|
2015-04-25 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* Interop/Apple/Interop.Apple.stat.cs:
|
* Interop/Apple/Interop.Apple.stat.cs:
|
||||||
|
|||||||
@@ -74,6 +74,7 @@ internal static partial class Interop
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets an extended attribute value
|
/// Gets an extended attribute value
|
||||||
|
/// Calls to system's getxattr(2)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Path to the file.</param>
|
/// <param name="path">Path to the file.</param>
|
||||||
/// <param name="name">Name of the extended attribute.</param>
|
/// <param name="name">Name of the extended attribute.</param>
|
||||||
@@ -87,6 +88,7 @@ internal static partial class Interop
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sets an extended attribute value
|
/// Sets an extended attribute value
|
||||||
|
/// Calls to system's setxattr(2)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Path to the file.</param>
|
/// <param name="path">Path to the file.</param>
|
||||||
/// <param name="name">Name of the extended attribute.</param>
|
/// <param name="name">Name of the extended attribute.</param>
|
||||||
@@ -100,6 +102,7 @@ internal static partial class Interop
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Removes an extended attribute
|
/// Removes an extended attribute
|
||||||
|
/// Calls to system's removexattr(2)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Path to the file.</param>
|
/// <param name="path">Path to the file.</param>
|
||||||
/// <param name="name">Name of the extended attribute.</param>
|
/// <param name="name">Name of the extended attribute.</param>
|
||||||
@@ -110,6 +113,7 @@ internal static partial class Interop
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Lists the extended attributes from a file
|
/// Lists the extended attributes from a file
|
||||||
|
/// Calls to system's listxattr(2)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Path to the file.</param>
|
/// <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>
|
/// <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>
|
||||||
|
|||||||
Reference in New Issue
Block a user