Searched refs:PF_USED_MATH (Results 1 - 1 of 1) sorted by relevance

/linux-4.1.27/include/linux/
H A Dsched.h1977 #define PF_USED_MATH 0x00002000 /* if unset the fpu must be initialized before use */ macro
2005 #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0)
2006 #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0)
2010 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
2014 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
2015 /* NOTE: this will return 0 or PF_USED_MATH, it will never return 1 */
2016 #define tsk_used_math(p) ((p)->flags & PF_USED_MATH)

Completed in 99 milliseconds