docs/ikteam: Delete most files.
[haiku.git] / docs / develop / kernel / vm_store_null
blob88098fae213c891b5985cd8eb8dcb714380c541c
1 static void null_destroy(struct vm_store *store)
2         Frees this stores space.
4 static off_t null_commit(struct vm_store *store, off_t size)
5         Sets committed size to size and returns it.
7 static int null_has_page(struct vm_store *store, off_t offset)
8         returns 1.
9         
10 static ssize_t null_read(struct vm_store *store, off_t offset, iovecs *vecs)
11         Returns -1.
13 static ssize_t null_write(struct vm_store *store, off_t offset, iovecs *vecs)
14         Returns -1.
16 static int null_fault(struct vm_store *store, struct vm_address_space *aspace, off_t offset)
17         Returns a Fatal page fault error.
19 vm_store *vm_store_create_null(void)    
20         Creates an empty vm_store struct.