From f2a5a033c5fa524975a9e5fb1ff608549a484111 Mon Sep 17 00:00:00 2001
From: Jack Logan <93589752+jack-m-logan@users.noreply.github.com>
Date: Wed, 16 Mar 2022 11:21:00 +0000
Subject: [PATCH] Add content - threads and concurrency (#1189)
---
content/guides/threads-and-concurrency.md | 8 ++++++++
1 file changed, 8 insertions(+)
create mode 100644 content/guides/threads-and-concurrency.md
diff --git a/content/guides/threads-and-concurrency.md b/content/guides/threads-and-concurrency.md
new file mode 100644
index 000000000..b6038a96e
--- /dev/null
+++ b/content/guides/threads-and-concurrency.md
@@ -0,0 +1,8 @@
+# Threads and Concurrency
+
+A thread is an execution context in which the instructions to the CPU can be scheduled and executed independently of the parent process. Concurrency is the concept of multiple threads in a shared memory space being computed simultaneously (or intermittently executed in succession to provide that illusion). Concurrency allows multiple processes to execute at once and can apply to programming languages as well as operating systems.
+
+Free Content
+Threading Tutorial #1 - Concurrency, Threading and Parallelism
+Operating System: Threads and Concurrency
+Reading 17: Concurrency