Hxcore.ol

| Feature | Description | Practical Impact | |---------|-------------|-------------------| | | Fixed‑size slab allocator + optional lock‑free arena. | Predictable allocation latency (< 2 µs for 64 KB blocks). | | Thread Scheduler | Light‑weight cooperative scheduler with priority queues. | Simplifies real‑time task orchestration without pulling in heavyweight OS threads. | | Binary Log System | Zero‑copy log format with built‑in compression (LZ4). | Minimal I/O overhead; logs can be streamed live from embedded devices. | | Serialization | Schema‑driven binary format ( .hxbin ) plus JSON fallback. | Fast state sync for networked multiplayer or sensor pipelines. | | Platform Abstraction Layer (PAL) | Unified API for file I/O, timers, and atomic primitives. | Write once, run anywhere – no #ifdef s needed. | | Optional SIMD Extensions | Auto‑detects AVX2/NEON and enables vectorized math kernels. | Up to 1.8× speed‑up on matrix‑multiply benchmarks. |

curl -s https://hxcore.ol/install.sh | bash hxcore.ol

Give it a spin. Break it. Tell us what you think. | Feature | Description | Practical Impact |