Home
last modified time | relevance | path

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

/linux/include/linux/
A Dsched.h1674 #define PF_USED_MATH 0x00002000 /* If unset the fpu must be initialized before use */ macro
1703 #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0)
1704 #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0)
1709 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
1714 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
1717 #define tsk_used_math(p) ((p)->flags & PF_USED_MATH)

Completed in 10 milliseconds