Changeset 506 for trunk/kernel/syscalls/sys_pipe.c
- Timestamp:
- Aug 25, 2018, 6:29:34 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_pipe.c
r473 r506 28 28 #include <printk.h> 29 29 30 #include <syscalls.h> 31 30 32 ////////////////////////////////////// 31 int sys_pipe ( uint32_t *file_fd[2] )33 int sys_pipe ( uint32_t file_fd[2] ) 32 34 { 33 thread_t * this = CURRENT_THREAD;34 35 35 printk("\n[ERROR] in %d : not implemented yet\n", __FUNCTION__, file_fd ); 36 return -1;36 return ENOSYS; 37 37 }
Note: See TracChangeset
for help on using the changeset viewer.