最終更新:2014-05-23 (金) 16:21:26 (3620d)  

linux/notifier.h
Top / linux / notifier.h

Routines to manage notifier chains for passing status changes to any interested routines. We need this instead of hard coded call lists so that modules can poke their nose into the innards. The network devices needed them so here they are for the rest of you.

http://lxr.onakasuita.org/source/include/linux/notifier.h

構造体

  • notifier_block
  • atomic_notifier_head?
  • blocking_notifier_head?
  • raw_notifier_head?
  • srcu_notifier_head? - Sleepable Read-Copy Update

マクロ

  • srcu_cleanup_notifier_head?

関数

register

  • blocking_notifier_chain_cond_register?

unregister

  • atomic_notifier_chain_unregister?
  • blocking_notifier_chain_unregister?
  • raw_notifier_chain_unregister?
  • srcu_notifier_chain_unregister?

call chain

  • atomic_notifier_call_chain?
  • __atomic_notifier_call_chain?
  • blocking_notifier_call_chain
  • __blocking_notifier_call_chain?
  • raw_notifier_call_chain?
  • __raw_notifier_call_chain?
  • srcu_notifier_call_chain?
  • __srcu_notifier_call_chain?

その他

  • notifier_from_errno?
  • notifier_to_errno?