On 9/21/21 11:14 PM, Warner Losh wrote:
+void stop_all_tasks(void) +{ + /* + * We trust when using NPTL (pthreads) start_exclusive() handles thread + * stopping correctly. + */ + start_exclusive(); +}
Eh. It begs the question of why this is present, as opposed to calling start_exclusive directly for the one (1) use. Looks to me like we should remove it.
r~