Changeset 664 for trunk/kernel/syscalls/sys_mmap.c
- Timestamp:
- Oct 10, 2020, 5:11:27 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_mmap.c
r657 r664 26 26 #include <hal_vmm.h> 27 27 #include <hal_irqmask.h> 28 #include <shared_syscalls.h>29 28 #include <errno.h> 30 29 #include <thread.h> … … 36 35 37 36 #include <syscalls.h> 37 #include <shared_syscalls.h> 38 38 39 39 ////////////////////////////////// … … 141 141 142 142 // get extended pointer on file descriptor 143 xptr_t file_xp = process_fd_get_xptr ( process , fdid );143 xptr_t file_xp = process_fd_get_xptr_from_local( process , fdid ); 144 144 145 145 if( file_xp == XPTR_NULL )
Note: See TracChangeset
for help on using the changeset viewer.