All Questions
Tagged with library multithreading
9 questions
0
votes
2
answers
111
views
Small library for metrics scraping in C++
I did an internship test project (source: https://github.com/SynI20N/VKInfo). Looking for some middle or senior devs to rate it and point out potential problems with my code.
Follow up: How would you ...
2
votes
1
answer
689
views
C++ multithread pool class
I have addressed the critique for this post and resubmitted it for iterative review; C++20 multithread pool class.
This is an iteration from a prior post; C++ thread pool class.
Class for creating ...
4
votes
1
answer
292
views
Python threading utilities
I've written a library with convenience functions for working with the Python threading module (specifically threading.Thread ...
10
votes
1
answer
319
views
Lightweight asynchronous event library in C - Threadpool module
I have finished writing a C library whose purpose is to provide a simple API for asynchronously executing functions, waiting for events on file descriptors and waiting for timeouts. The whole library ...
4
votes
0
answers
630
views
Pitch detection library, basic architecture
I'm a mechanical engineer/amateur programmer trying to learn modern C++. I'm working on a personal project where I'm building a library that uses PortAudio to abstract some basic audio processing, ...
1
vote
1
answer
479
views
System to handle the short lived async task
I'm developing an application in which there are many short-lived tasks which are run in separate threads. I've developed a generic and reusable system to handle such a requirement. The code snippet ...
2
votes
1
answer
338
views
ThreadPool based on ASIO, using a particle emitter
This code exists in my home repo and in general nobody else has really touched it. Living in such a vacuum has left me kind of uncertain of the actual code quality and correctness which is why I am ...
11
votes
2
answers
10k
views
Having sync and async methods by implementing future interface
I need to make a library in which I will have synchronous and asynchronous methods in it and this library will be used by our customer in our company. Some customer will call the ...
3
votes
1
answer
558
views
Activeresource-response gem
I created my first gem for Rails today. https://github.com/Fivell/activeresource-response.
This gem adds possibility to access http response object from result of activeresource call.
I don't know how ...