Respond to a path being updated.
$path: An associative array containing the following keys:
function hook_path_update($path) {
db_update('mytable')
->fields(array(
'alias' => $path['alias'],
))
->condition('pid', $path['pid'])
->execute();
}