#![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]
}
}