blob: 7702cb3327c8ceb9b72781a2e9b00b7503c0b111 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef HILBERT_KERNEL_STORAGE_BD_MEMORY_HPP
#define HILBERT_KERNEL_STORAGE_BD_MEMORY_HPP
#include <hilbert/kernel/storage.hpp>
namespace hilbert::kernel::storage::bd {
class memory : public block_device {
private:
uint8_t *buffer;
public:
memory(void *buffer, uint64_t buffer_len);
bd_result read_blocks_no_cache(uint64_t start, uint64_t count, void *into) override;
};
}
#endif
|