From 55847fbc11e4bdbf4f0a56596ad93c2151a8d6e8 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 21 Sep 2011 15:16:18 +0200 Subject: [PATCH] Put probe name descriptions on separate line to include in tapset ref. To get included in the tapset reference manual a probe name description cannot start on the first '/**' comment line. --- tapset/scheduler.stp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tapset/scheduler.stp b/tapset/scheduler.stp index f25d825fd..f1787e8c3 100644 --- a/tapset/scheduler.stp +++ b/tapset/scheduler.stp @@ -21,7 +21,8 @@ function __is_idle:long() %} -/** probe scheduler.cpu_off - Process is about to stop running on a cpu +/** + * probe scheduler.cpu_off - Process is about to stop running on a cpu * * @name: name of the probe point * @task_prev: the process leaving the cpu (same as current) @@ -42,7 +43,8 @@ probe scheduler.cpu_off = } -/** probe scheduler.cpu_on - Process is beginning execution on a cpu +/** + * probe scheduler.cpu_on - Process is beginning execution on a cpu * * @name: name of the probe point * @task_prev: the process that was previously running on this cpu @@ -58,7 +60,8 @@ probe scheduler.cpu_on = kernel.function("finish_task_switch") ? } -/* probe scheduler.tick - Schedulers internal tick, a processes timeslice accounting is updated +/** + * probe scheduler.tick - Schedulers internal tick, a processes timeslice accounting is updated * * @name: name of the probe point * @idle: boolean indicating whether current is the idle process @@ -71,7 +74,8 @@ probe scheduler.tick = kernel.function("scheduler_tick") idle = __is_idle() } -/* probe scheduler.balance - A cpu attemptint to find more work. +/** + * probe scheduler.balance - A cpu attempting to find more work. * * @name: name of the probe point * -- 2.43.5