Implement process file mode creation mask

This commit is contained in:
EnderIce2
2024-04-01 00:47:33 +03:00
parent a3b3ab76a7
commit 473821bfa8
2 changed files with 3 additions and 0 deletions

View File

@ -465,6 +465,8 @@ namespace Tasking
/* Other */
Signal Signals;
mode_t FileCreationMask = S_IRUSR | S_IWUSR | S_IRGRP |
S_IWGRP | S_IROTH | S_IWOTH;
/* Threads & Children */
std::list<TCB *> Threads;