Several variables are left unused as a result of different patches removing their use.
Two variables have some use:
poll_count is used by KMP_BLOCKING under certain conditions. Adding (void) to tell the compiler to ignore the unused variable.
padding is a dummy stack allocation with no intent to be used. Also adding (void) to make the compiler ignore the unused variable.