Changeset 637 for trunk/kernel/syscalls/sys_unlink.c
- Timestamp:
- Jul 18, 2019, 2:06:55 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_unlink.c
r610 r637 2 2 * sys_unlink.c - unlink a file or directorya from VFS 3 3 * 4 * Author Alain Greiner (2016,2017,2018 )4 * Author Alain Greiner (2016,2017,2018,2019) 5 5 * 6 6 * Copyright (c) UPMC Sorbonne Universites … … 60 60 61 61 // copy pathname in kernel space 62 hal_strcpy_from_uspace( kbuf , pathname , CONFIG_VFS_MAX_PATH_LENGTH ); 62 hal_strcpy_from_uspace( XPTR( local_cxy , kbuf ), 63 pathname, 64 CONFIG_VFS_MAX_PATH_LENGTH ); 63 65 64 66 #if DEBUG_SYS_UNLINK
Note: See TracChangeset
for help on using the changeset viewer.