Skip to content

Johrespi/Operating-Systems

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💻 Operating Systems 💻

This repository contains various C programs and scripts related to the Linux operating system, demonstrating key concepts such as process management, memory allocation, file handling, and system calls.

pid_t pid = fork();

if(pid == 0){
  sleep(5);
  printf("Don't leave me orphan :(\n");
}

else {
  printf("Sorry kid, it isn't personal\n");
  exit(0);
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published