ade59a11bc
Address for program loading, kernel heap, userspace SHM regions, and stacks have been changed. Delete: toolchain/build toolchain/local .userspace_check Run: python userspace/build.py clean make clean-disk make clean ./build.sh
48 lines
823 B
C
48 lines
823 B
C
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
*/
|
|
|
|
#ifndef SHM_H
|
|
#define SHM_H
|
|
|
|
#include <types.h>
|
|
|
|
#define SHM_PATH_SEPARATOR "."
|
|
#define SHM_START 0xD0010000
|
|
|
|
/* Types */
|
|
struct shm_node;
|
|
|
|
typedef struct {
|
|
struct shm_node * parent;
|
|
volatile uint8_t lock;
|
|
int32_t ref_count;
|
|
|
|
uint32_t num_frames;
|
|
uintptr_t *frames;
|
|
} shm_chunk_t;
|
|
|
|
typedef struct shm_node {
|
|
char name[256];
|
|
shm_chunk_t * chunk;
|
|
} shm_node_t;
|
|
|
|
typedef struct {
|
|
shm_chunk_t * chunk;
|
|
uint8_t volatile lock;
|
|
|
|
uint32_t num_vaddrs;
|
|
uintptr_t *vaddrs;
|
|
} shm_mapping_t;
|
|
|
|
/* Syscalls */
|
|
extern void * shm_obtain (char * path, size_t * size);
|
|
extern int shm_release (char * path);
|
|
|
|
/* Other exposed functions */
|
|
extern void shm_install ();
|
|
extern void shm_release_all (process_t * proc);
|
|
|
|
//extern void shm_debug_frame(uintptr_t vaddr);
|
|
|
|
#endif
|