1 /* 2 * linux/kernel/math/error.c 3 * 4 * (C) 1991 Linus Torvalds 5 */ 6 7 #include <signal.h> 8 9 #include <linux/sched.h> 10 11 void math_error(void) /* */ 12 { 13 if (last_task_used_math) 14 send_sig(SIGFPE,last_task_used_math,1); 15 __asm__("fnclex"); 16 }