pub type ShmHandle = u32;Expand description
A SHM handle is a unique identifier required to manipulate a shared memory.
That handle is forged by the kernel at bootup time and vary from one boot to another.
The SHM handle can be retrieved by using the crate::syscall::get_shm_handle
syscall.