[PR #706] [CLOSED] Operating system #1190

Open
opened 2026-01-29 15:18:16 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/706
Author: @Nikhil-Wani
Created: 10/22/2020
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 Changes

14 files changed (+317 additions, -0 deletions)

View changed files

Operating_Systems/exec/exec_demo.c (+13 -0)
Operating_Systems/exec/fork_exec_demo.c (+21 -0)
Operating_Systems/fifo/reader.c (+21 -0)
Operating_Systems/fifo/writer.c (+17 -0)
Operating_Systems/fork/fork.c (+18 -0)
Operating_Systems/mutex/mutex.c (+35 -0)
Operating_Systems/mutex/mutex_deadlock.c (+40 -0)
Operating_Systems/pid/pid.c (+16 -0)
Operating_Systems/pipes/pipe.c (+27 -0)
Operating_Systems/race_condition/race_condition.c (+28 -0)
Operating_Systems/semaphore/semaphore.c (+36 -0)
Operating_Systems/system_call/system_call.c (+21 -0)
Operating_Systems/threads/thread_demo.c (+16 -0)
Operating_Systems/trace_tool/trace_tool.c (+8 -0)

📄 Description

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/706 **Author:** [@Nikhil-Wani](https://github.com/Nikhil-Wani) **Created:** 10/22/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`e84bee3`](https://github.com/TheAlgorithms/C/commit/e84bee34913bfb7b41d0c33941d125d08008d598) Add files via upload - [`0a5fbe3`](https://github.com/TheAlgorithms/C/commit/0a5fbe3e531d31778f9e4d162c932e474bd90ffd) Delete execdemo - [`0b1396c`](https://github.com/TheAlgorithms/C/commit/0b1396cf1fc636f7a3e291101e7ab249da1d4f6b) Delete tracetool - [`4dee50b`](https://github.com/TheAlgorithms/C/commit/4dee50b0f31e8027b69fea97e71b1a6631fcd9af) Delete tracetool.c - [`311013e`](https://github.com/TheAlgorithms/C/commit/311013eda55242c5b3e9c5122dfc4be6be277aa8) Delete tracetoolsys.c - [`f02c4cc`](https://github.com/TheAlgorithms/C/commit/f02c4cc4c0f357bff0a031e4ff36fc67c267cea1) Delete tracetoolsys - [`53ba99b`](https://github.com/TheAlgorithms/C/commit/53ba99bf79b470c4d9d797fe12cbd7240771050a) Delete execdemo.c - [`4fb22a5`](https://github.com/TheAlgorithms/C/commit/4fb22a52ec64bc6869ee68fae9d01526a3cdb097) Delete forkexecdemo - [`0bce90d`](https://github.com/TheAlgorithms/C/commit/0bce90dc7dc511f88bb9df77d3df258e3385e95c) Delete forkexecdemo.c - [`92a8e42`](https://github.com/TheAlgorithms/C/commit/92a8e42780641d1a8d577ddfb19851e5c280e228) Delete threaddemo ### 📊 Changes **14 files changed** (+317 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `Operating_Systems/exec/exec_demo.c` (+13 -0) ➕ `Operating_Systems/exec/fork_exec_demo.c` (+21 -0) ➕ `Operating_Systems/fifo/reader.c` (+21 -0) ➕ `Operating_Systems/fifo/writer.c` (+17 -0) ➕ `Operating_Systems/fork/fork.c` (+18 -0) ➕ `Operating_Systems/mutex/mutex.c` (+35 -0) ➕ `Operating_Systems/mutex/mutex_deadlock.c` (+40 -0) ➕ `Operating_Systems/pid/pid.c` (+16 -0) ➕ `Operating_Systems/pipes/pipe.c` (+27 -0) ➕ `Operating_Systems/race_condition/race_condition.c` (+28 -0) ➕ `Operating_Systems/semaphore/semaphore.c` (+36 -0) ➕ `Operating_Systems/system_call/system_call.c` (+21 -0) ➕ `Operating_Systems/threads/thread_demo.c` (+16 -0) ➕ `Operating_Systems/trace_tool/trace_tool.c` (+8 -0) </details> ### 📄 Description #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [ ] Added description of change - [ ] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [ ] Added tests and example, test must pass - [ ] Relevant documentation/comments is changed or added - [ ] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [ ] Search previous suggestions before making a new one, as yours may be a duplicate. - [ ] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/706"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Nikhil-Wani/C.git/3a10ed2ceaf7f0461f2ec5dbee15854d98c51cd0.svg" /></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:18:16 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1190