mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 22:47:54 +02:00
* Some convenience permission constants, patch by Graeme #26373
git-svn-id: trunk@28038 -
This commit is contained in:
parent
924a48d440
commit
bcd13a856d
@ -242,6 +242,9 @@ CONST
|
||||
S_IROTH = %0000000100; { Read permission for world }
|
||||
S_IWOTH = %0000000010; { Write permission for world }
|
||||
S_IXOTH = %0000000001; { Exec permission for world }
|
||||
S_IRWXU = S_IRUSR or S_IWUSR or S_IXUSR;
|
||||
S_IRWXG = S_IRGRP or S_IWGRP or S_IXGRP;
|
||||
S_IRWXO = S_IROTH or S_IWOTH or S_IXOTH;
|
||||
|
||||
{ Used for waitpid }
|
||||
WNOHANG = 1; { don't block waiting }
|
||||
|
Loading…
Reference in New Issue
Block a user