1. NAME

register_reboot_notifier - Register function to be called at reboot time

2. SYNOPSIS

int register_reboot_notifier(struct notifier_block *  nb );

3. ARGUMENTS

nb
    Info about notifier function to be called

4. DESCRIPTION

Registers a function with the list of functions to be called at reboot time.

Currently always returns zero, as blocking_notifier_chain_register always returns zero.

5. COPYRIGHT