1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#![cfg_attr(not(target_os = "linux"), allow(dead_code))]
use alloc::vec;
use alloc::vec::Vec;
use core::cell::UnsafeCell;
pub struct Stash {
buffers: UnsafeCell<Vec<Vec<u8>>>,
}
impl Stash {
pub fn new() -> Stash {
Stash {
buffers: UnsafeCell::new(Vec::new()),
}
}
pub fn allocate(&self, size: usize) -> &mut [u8] {
let buffers = unsafe { &mut *self.buffers.get() };
let i = buffers.len();
buffers.push(vec![0; size]);
&mut buffers[i]
}
}