Skip to content

Commit

Permalink
Reduce Linux dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
herrcristi committed Dec 22, 2024
1 parent 7839460 commit 9ff2d3c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ int main()
{
std::cout << "Hello. Here are the default small cpp utils examples\n\n";

// examples::spinlock::Example1();
// examples::hash::Example1();
examples::spinlock::Example1();
examples::hash::Example1();
examples::base64::Example1();
// examples::util::Example1();
// examples::buffer::Example1();
// examples::event::Example1();
// examples::lock_queue::Example1();
// examples::time_queue::Example1();
// examples::prio_queue::Example1();
examples::util::Example1();
examples::buffer::Example1();
examples::event::Example1();
examples::lock_queue::Example1();
examples::time_queue::Example1();
examples::prio_queue::Example1();

examples::worker_thread::Example1();
examples::worker_thread::Example2();
// examples::worker_thread::Example3_Perf();
examples::worker_thread::Example3_Perf();

examples::jobs_engine::Example1();
examples::jobs_engine::Example2();
Expand Down

0 comments on commit 9ff2d3c

Please sign in to comment.