I have a kernel module that allocates memory and I would like to share this memory with a user process. In normal mode we can only do that with: mmap, /proc, shmem, etc. but in single user mode, for embedded devices, isn't there a way to share a simple pointer?I have a kernel module that allocates memory an