Re: [PATCH 08/11] Task watchers: Register profile as a task watcher

From: Chase Venters
Date: Tue Jun 13 2006 - 20:58:45 EST


On Tuesday 13 June 2006 18:54, Matt Helsley wrote:

> switch (type) {
> - case PROFILE_TASK_EXIT:
> - err = blocking_notifier_chain_register(
> - &task_exit_notifier, n);
> - break;
> case PROFILE_MUNMAP:
> err = blocking_notifier_chain_register(
> &munmap_notifier, n);
> break;
> }

if (type == PROFILE_MUNMAP)

?

> @@ -140,14 +130,10 @@ int profile_event_register(enum profile_
> int profile_event_unregister(enum profile_type type, struct notifier_block
> * n) {
> int err = -EINVAL;
>
> switch (type) {
> - case PROFILE_TASK_EXIT:
> - err = blocking_notifier_chain_unregister(
> - &task_exit_notifier, n);
> - break;
> case PROFILE_MUNMAP:
> err = blocking_notifier_chain_unregister(
> &munmap_notifier, n);
> break;
> }

Same...

Thanks,
Chase
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/