* be followed by ast_propagate().
*/
#define thread_ast_set(act, reason) \
- (hw_atomic_or(&(act)->ast, (reason)))
+ ((void)hw_atomic_or(&(act)->ast, (reason)))
#define thread_ast_clear(act, reason) \
- (hw_atomic_and(&(act)->ast, ~(reason)))
+ ((void)hw_atomic_and(&(act)->ast, ~(reason)))
#define thread_ast_clear_all(act) \
- (hw_atomic_and(&(act)->ast, AST_NONE))
+ ((void)hw_atomic_and(&(act)->ast, AST_NONE))
#ifdef MACH_BSD