diff --git a/content/roadmaps/102-devops/content/101-os-concepts/110-threads-concurrency.md b/content/roadmaps/102-devops/content/101-os-concepts/110-threads-concurrency.md
index ff5cc163d..25ea468f8 100644
--- a/content/roadmaps/102-devops/content/101-os-concepts/110-threads-concurrency.md
+++ b/content/roadmaps/102-devops/content/101-os-concepts/110-threads-concurrency.md
@@ -1 +1,30 @@
-# Threads concurrency
\ No newline at end of file
+# Thread in OS
+
+`Thread` is an active entity which executes a **part of a process**. It is a sequential flow of tasks within a process. It is also called lightweight process as they **share common resources**. A process can contain multiple threads. Threads are used to increase the performance of the applications.
+Each thread has its own program counter, stack, and set of registers. But the threads of a single process might share the same code and data/file.
+
+**Key Terminologies:**
+* `proc`
+* `fork`
+* `join`
+
+Free Content
+Process Synchronization
+What is Thread in OS?
+Process vs Thread & Multi-Threading
+
+# Concurrency in OS
+
+`Concurrency` is the execution of the multiple instruction sequences at the same time. It happens in the operating system when there are several process threads running in parallel. It helps in techniques like **coordinating execution of processes**, memory allocation and execution scheduling for maximizing throughput.
+
+The running process threads always communicate with each other through shared memory or message passing. Concurrency results in sharing of resources result in problems like deadlocks and resources starvation.
+
+**Key Terminologies:**
+* mutex
+* critical section
+* Deadlock
+
+Free Content
+What Concurrency in OS?
+Threads vs Concurrency
+How Concurrency is achieved in Threads
\ No newline at end of file