Manpages are in octal, corrected typo.

This commit is contained in:
2015-05-03 19:40:19 +01:00
parent 25e5188a0b
commit 5824798a9a
2 changed files with 27 additions and 22 deletions

View File

@@ -1,3 +1,8 @@
2015-05-03 Natalia Portillo <claunia@claunia.com>
* Interop/Linux/Interop.Linux.stat.cs:
Manpages are in octal, corrected typo.
2015-05-03 Natalia Portillo <claunia@claunia.com> 2015-05-03 Natalia Portillo <claunia@claunia.com>
* Claunia.IO.csproj: * Claunia.IO.csproj:

View File

@@ -191,91 +191,91 @@ internal static partial class Interop
/// <summary> /// <summary>
/// bit mask for the file type bit fields /// bit mask for the file type bit fields
/// </summary> /// </summary>
S_IFMT = 0x0170000, S_IFMT = 0xF000,
/// <summary> /// <summary>
/// socket /// socket
/// </summary> /// </summary>
S_IFSOCK = 0x0140000, S_IFSOCK = 0xC000,
/// <summary> /// <summary>
/// symbolic link /// symbolic link
/// </summary> /// </summary>
S_IFLNK = 0x0120000, S_IFLNK = 0xA000,
/// <summary> /// <summary>
/// regular file /// regular file
/// </summary> /// </summary>
S_IFREG = 0x0100000, S_IFREG = 0x8000,
/// <summary> /// <summary>
/// block device /// block device
/// </summary> /// </summary>
S_IFBLK = 0x0060000, S_IFBLK = 0x6000,
/// <summary> /// <summary>
/// directory /// directory
/// </summary> /// </summary>
S_IFDIR = 0x0040000, S_IFDIR = 0x4000,
/// <summary> /// <summary>
/// character device /// character device
/// </summary> /// </summary>
S_IFCHR = 0x0020000, S_IFCHR = 0x2000,
/// <summary> /// <summary>
/// FIFO /// FIFO
/// </summary> /// </summary>
S_IFIFO = 0x0010000, S_IFIFO = 0x1000,
/// <summary> /// <summary>
/// set-user-ID bit /// set-user-ID bit
/// </summary> /// </summary>
S_ISUID = 0x0004000, S_ISUID = 0x0800,
/// <summary> /// <summary>
/// set-group-ID bit /// set-group-ID bit
/// </summary> /// </summary>
S_ISGID = 0x0002000, S_ISGID = 0x0400,
/// <summary> /// <summary>
/// sticky bit (see below) /// sticky bit (see below)
/// </summary> /// </summary>
S_ISVTX = 0x0001000, S_ISVTX = 0x0200,
/// <summary> /// <summary>
/// mask for file owner permissions /// mask for file owner permissions
/// </summary> /// </summary>
S_IRWXU = 0x00700, S_IRWXU = 0x01C0,
/// <summary> /// <summary>
/// owner has read permission /// owner has read permission
/// </summary> /// </summary>
S_IRUSR = 0x00400, S_IRUSR = 0x0100,
/// <summary> /// <summary>
/// owner has write permission /// owner has write permission
/// </summary> /// </summary>
S_IWUSR = 0x00200, S_IWUSR = 0x0080,
/// <summary> /// <summary>
/// owner has execute permission /// owner has execute permission
/// </summary> /// </summary>
S_IXUSR = 0x00100, S_IXUSR = 0x0040,
/// <summary> /// <summary>
/// mask for group permissions /// mask for group permissions
/// </summary> /// </summary>
S_IRWXG = 0x00070, S_IRWXG = 0x0038,
/// <summary> /// <summary>
/// group has read permission /// group has read permission
/// </summary> /// </summary>
S_IRGRP = 0x00040, S_IRGRP = 0x0020,
/// <summary> /// <summary>
/// group has write permission /// group has write permission
/// </summary> /// </summary>
S_IWGRP = 0x00020, S_IWGRP = 0x0010,
/// <summary> /// <summary>
/// group has execute permission /// group has execute permission
/// </summary> /// </summary>
S_IXGRP = 0x00010, S_IXGRP = 0x0008,
/// <summary> /// <summary>
/// mask for permissions for others (not in group) /// mask for permissions for others (not in group)
/// </summary> /// </summary>
S_IRWXO = 0x00007, S_IRWXO = 0x0007,
/// <summary> /// <summary>
/// others have read permission /// others have read permission
/// </summary> /// </summary>
S_IROTH = 0x00004, S_IROTH = 0x0004,
/// <summary> /// <summary>
/// others have write permission /// others have write permission
/// </summary> /// </summary>
S_IWOTH = 0x00002, S_IWOTH = 0x002,
/// <summary> /// <summary>
/// others have execute permission /// others have execute permission
/// </summary> /// </summary>