Changeset 473 for trunk/kernel/syscalls/sys_signal.c
- Timestamp:
- Aug 21, 2018, 6:01:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_signal.c
r457 r473 33 33 { 34 34 thread_t * this = CURRENT_THREAD; 35 process_t * process = this->process; 35 36 36 printk("\n[ERROR] in %s : not implemented yet\n", __FUNCTION__ );37 this->errno = EINVAL;37 printk("\n[ERROR] in %s : thread %x in process %x / not implemented yet\n", 38 __FUNCTION__, this->trdid, process->pid, sig_id, handler ); 38 39 return -1; 39 40 }
Note: See TracChangeset
for help on using the changeset viewer.