1. NAME

kthread_should_stop - should this kthread return now?

2. SYNOPSIS

bool kthread_should_stop( void );

3. ARGUMENTS

void
    no arguments

4. DESCRIPTION

When someone calls kthread_stop on your kthread, it will be woken and this will return true. You should then return, and your return value will be passed through to kthread_stop.

5. COPYRIGHT