Skip to content
View BardiParsi's full-sized avatar
🎯
Focusing on Unreal Engine
🎯
Focusing on Unreal Engine
Block or Report

Block or report BardiParsi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Popular repositories

  1. piCalculator piCalculator Public

    a C++ program that demonstrates the use of a thread pool for efficiently calculating the value of PI using multiple threads. The program utilizes a thread pool to distribute the computation of PI a…

    Makefile

  2. LazyInitialization LazyInitialization Public

    This C++20 solution enables lazy initialization for multithreaded tasks. It efficiently initializes an expensive object only when needed, ensuring thread safety. It utilizes std::once_flag and std:…

    C++

  3. SingleTon SingleTon Public

    This repository contains an implementation of the Singleton Lazy Initialization design pattern in C++20. The Singleton pattern ensures that a class has only one instance and provides a global point…

    C++

  4. BlockQueue BlockQueue Public

    The BlockQueue pattern is a thread-safe queue implementation that allows multiple threads to push and pop elements concurrently. It provides synchronized access to the underlying queue, ensuring th…

    C++

  5. ThreadPool ThreadPool Public

    A C++ project demonstrating the Thread Pool pattern for efficient concurrency. This program intelligently distributes threads equally among the heavy tasks, allowing for concurrent execution and op…

    C++