Full-stack observability with actually useful AI | Grafana Cloud
Our generous forever free tier includes the full platform, including the AI Assistant, for 3 users with 10k metrics, 50GB logs, and 50GB traces.
Built on open standards like Prometheus and OpenTelemetry, Grafana Cloud includes Kubernetes Monitoring, Application Observability, Incident Response, plus the AI-powered Grafana Assistant. Get started with our generous free tier today.
Create free account
Earn up to 16% annual interest with Nexo.
Let your crypto work for you
Put idle assets to work with competitive interest rates, borrow without selling, and trade with precision. All in one platform.
Geographic restrictions, eligibility, and terms apply.
c++/java library for thread support and other useful stuff
Description
zibaldone is a c++/java library for multithread programming.
Currently zibaldone provides the following functionalities:
=> a class named "Thread" that (likewise what happens in Java) is to be inherited to create user thread.
=> event communications management between threads (design pattern observer)
=> socket support class (both PF_LOCAL and AF_INET on Linux, AF_INET on windows)
=> Serial port communication support class
=> Timer objects
=> Logging facilities
With zibaldone you can easily:
developing a c++ or java multithread application
connecting a thread to a socket
connecting a thread to a serial port
triggering an event to a timeout on a thread
Note: zibaldone offers an identical interface both for linux and windows. ...