https://github.com/samcrow/o1heap
A highly deterministic constant-complexity memory allocator (in Rust) designed for hard real-time high-integrity embedded systems
https://github.com/samcrow/o1heap
Last synced: 8 months ago
JSON representation
A highly deterministic constant-complexity memory allocator (in Rust) designed for hard real-time high-integrity embedded systems
- Host: GitHub
- URL: https://github.com/samcrow/o1heap
- Owner: samcrow
- License: mit
- Created: 2021-05-20T17:10:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-20T18:11:14.000Z (about 5 years ago)
- Last Synced: 2025-09-13T07:41:38.419Z (9 months ago)
- Language: Rust
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# o1heap
O1heap is a highly deterministic constant-complexity memory allocator designed for hard real-time high-integrity
embedded systems. The name stands for O(1) heap.
This Rust implementation is closely based on [Pavel Kirienko's original C implementation](https://github.com/pavel-kirienko/o1heap).
I only translated it into Rust. Please see the readme there for details about how this allocator works.
## License
MIT license (see LICENSE.txt)
The original C implementation is also MIT-licensed:
```
Copyright (c) 2020 Pavel Kirienko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
```