Squash commits for public release

This commit is contained in:
2025-02-12 09:54:05 -05:00
commit 7118adc514
1108 changed files with 80873 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef _KERNEL_IO_SHARED_BUFFER_SHARED_BUFFER_H
#define _KERNEL_IO_SHARED_BUFFER_SHARED_BUFFER_H
#include <libkern/types.h>
int shared_buffer_init();
int shared_buffer_create(uintptr_t __user* buffer, size_t size);
int shared_buffer_get(int id, uintptr_t __user* buffer);
int shared_buffer_free(int id);
#endif /* _KERNEL_IO_SHARED_BUFFER_SHARED_BUFFER_H */