summaryrefslogtreecommitdiffstats
path: root/tapset
diff options
context:
space:
mode:
Diffstat (limited to 'tapset')
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/context.stp10
2 files changed, 5 insertions, 9 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 53798874..48dcf38a 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,7 @@
+2008-11-12 William Cohen <wcohen@redhat.com>
+
+ * context.stp: Remove cpuid() documentation.
+
2008-10-28 William Cohen <wcohen@redhat.com>
* vfs.stp (vfs.(read|write){.return}): Add inode variable, ino.
diff --git a/tapset/context.stp b/tapset/context.stp
index ff8db87b..24cfb819 100644
--- a/tapset/context.stp
+++ b/tapset/context.stp
@@ -168,14 +168,7 @@ function euid:long () %{ /* pure */
THIS->__retvalue = current->euid;
%}
-///<formalpara id="cpuid">
-/// <title>cpuid:long()</title>
-/// <indexterm><primary>cpuid</primary></indexterm>
-/// <para>
-/// Return the current cpu number.
-/// </para>
-///</formalpara>
-// FIXME is cpuid() or cpu() depricated?
+// cpuid() is not documented
function cpuid:long () %{ /* pure */
THIS->__retvalue = smp_processor_id();
%}
@@ -187,7 +180,6 @@ function cpuid:long () %{ /* pure */
/// Return the current cpu number.
/// </para>
///</formalpara>
-// FIXME is cpuid() or cpu() depricated?
function cpu:long () %{ /* pure */
THIS->__retvalue = smp_processor_id();
%}