devel_shutdown()See devel_start() which registers this function as a shutdown function.
sites/all/modules/devel/devel.module, line 774
<?php
function devel_shutdown() {
// Register the real shutdown function so it runs later than other shutdown functions.
register_shutdown_function('devel_shutdown_real');
}
?>