VOOZH
about
URL: https://www.geeksforgeeks.org/tag/mutli-threading/
β± mutli-threading Archives - GeeksforGeeks
π geeksforgeeks
Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Misc
7.7K+ articles
python-dict
257+ articles
TCS-coding-questions
136+ articles
Functions
58+ articles
QA - Placement Quizzes-Data Interpretation
54+ articles
c-array
35+ articles
cpp-multithreading
34+ articles
Perl-Scalars
6+ articles
Search an Array using Multithreading in C
Last Updated: 23 June 2025
Searching arrays with a large number of elements can be time-consuming as the program will check all the elements one by one, which may lead to delays and underutilization...
read more
C Language
c-array
mutli-threading
Reading and writing in the array using threads
Last Updated: 23 July 2025
An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This makes it easier to calculate t...
read more
π article_image
DSA
mutli-threading
Thread States in Operating Systems
Last Updated: 25 November 2019
When a thread moves through the system, it is always in one of the five states:(1) Ready(2) Running(3) Waiting(4) Delayed(5) Blocked Excluding CREATION and FINISHED state....
read more
π article_image
Operating Systems
GATE CS
mutli-threading
Processes & Threads
Conditional wait and signal in multi-threading
Last Updated: 27 January 2023
What are conditional wait and signal in multi-threading? Explanation: When you want to sleep a thread, condition variable can be used. In C under Linux, there is a functio...
read more
π article_image
Misc
C Programs
Linux-Unix
system-programming
mutli-threading
cpp-multithreading
Maximum in a 2D matrix using Multi-threading in C++
Last Updated: 03 February 2023
Given a 2-D matrix, find the element having maximum value using multi-threading.Prerequisite : MultithreadingExamples :Input : {{1, 5, 3, 6}, {22, 10, 4, 34}, ...
read more
π article_image
Misc
C++ Programs
C++
mutli-threading
cpp-multithreading
Dekker's algorithm in Process Synchronization
Last Updated: 29 August 2025
Dekkerβs Algorithm was the first correct solution to the critical section problem for two processes. It is significant in the history of operating systems because:It avoid...
read more
DSA
mutli-threading
Functions
QA - Placement Quizzes-Data Interpretation
python-dict
Perl-Scalars
TCS-coding-questions