12. Permissions

Previous lecture chores:

What this code do?

   1 #include <unistd.h>
   2 #include <stdio.h>
   3 
   4 int main() {
   5   int i;
   6   pid_t p;
   7 
   8   p = fork();
   9   for(i=0; i<100; i++)
  10     printf("%d %s\n", p, p ? "parent":"child");
  11 
  12   pause();
  13 }

TODO See LecturesCMC/LinuxSoftware2017/04_Permissions and Books/LinuxIntro/06ChapterPermissions in Russian

H/W

HSE/ProgrammingOS/12_Permissions (последним исправлял пользователь FrBrGeorge 2020-03-05 18:45:16)