Changes in kernel/generic/include/mm/as.h [c0699467:26aafe8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/as.h
rc0699467 r26aafe8 36 36 #define KERN_AS_H_ 37 37 38 #include <typedefs.h> 39 #include <abi/mm/as.h> 38 #ifdef KERNEL 39 #include <typedefs.h> 40 #else 41 #include <sys/types.h> 42 #endif 43 44 /** Address space area flags. */ 45 #define AS_AREA_READ 1 46 #define AS_AREA_WRITE 2 47 #define AS_AREA_EXEC 4 48 #define AS_AREA_CACHEABLE 8 49 50 /** Address space area info exported to userspace. */ 51 typedef struct { 52 /** Starting address */ 53 uintptr_t start_addr; 54 55 /** Area size */ 56 size_t size; 57 58 /** Area flags */ 59 unsigned int flags; 60 } as_area_info_t; 61 62 #ifdef KERNEL 63 40 64 #include <arch/mm/page.h> 41 65 #include <arch/mm/as.h> 42 66 #include <arch/mm/asid.h> 43 #include <arch/istate.h>44 67 #include <typedefs.h> 45 68 #include <synch/spinlock.h> … … 231 254 232 255 extern as_operations_t *as_operations; 233 extern li st_t inactive_as_with_asid_list;256 extern link_t inactive_as_with_asid_head; 234 257 235 258 extern void as_init(void); … … 283 306 extern mem_backend_t phys_backend; 284 307 308 /** 309 * This flags is passed when running the loader, otherwise elf_load() 310 * would return with a EE_LOADER error code. 311 * 312 */ 313 #define ELD_F_NONE 0 314 #define ELD_F_LOADER 1 315 316 extern unsigned int elf_load(elf_header_t *, as_t *, unsigned int); 317 285 318 /* Address space area related syscalls. */ 286 319 extern sysarg_t sys_as_area_create(uintptr_t, size_t, unsigned int); … … 294 327 extern void as_print(as_t *); 295 328 329 #endif /* KERNEL */ 330 296 331 #endif 297 332
Note:
See TracChangeset
for help on using the changeset viewer.