Motivation: speed up watchdog calls
watchdog uses module_implements, which is totally cached and knows that module_hook exists. module_invoke goes and calls module_hook which does another function_exists.
Since already know the function exists, how about just calling the function?