Changeset 506 for trunk/kernel/syscalls/sys_signal.c
- Timestamp:
- Aug 25, 2018, 6:29:34 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_signal.c
r473 r506 28 28 #include <printk.h> 29 29 30 #include <syscalls.h> 31 30 32 ////////////////////////////////// 31 33 int sys_signal( uint32_t sig_id, 32 34 void * handler ) 33 { 34 35 { 36 thread_t * this = CURRENT_THREAD; 35 37 process_t * process = this->process; 36 38 37 39 printk("\n[ERROR] in %s : thread %x in process %x / not implemented yet\n", 38 40 __FUNCTION__, this->trdid, process->pid, sig_id, handler ); 39 return -1;41 return ENOSYS; 40 42 } 41 43
Note: See TracChangeset
for help on using the changeset viewer.