summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Cohen <wcohen@redhat.com>2008-11-12 15:32:18 -0500
committerWilliam Cohen <wcohen@redhat.com>2008-11-12 15:32:18 -0500
commitcb4526f629de007f32be10719074bfb2b63867df (patch)
treed9114d96601f309bf1f3f72acd4e10232a1586c7
parentc813dcb43e02c318e13b5539e897fcca07b40d4b (diff)
downloadsystemtap-steved-cb4526f629de007f32be10719074bfb2b63867df.tar.gz
systemtap-steved-cb4526f629de007f32be10719074bfb2b63867df.tar.xz
systemtap-steved-cb4526f629de007f32be10719074bfb2b63867df.zip
Remove cpuid() documentation.
-rw-r--r--doc/SystemTap_Tapset_Reference/en-US/context.xml7
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/context.stp10
3 files changed, 5 insertions, 16 deletions
diff --git a/doc/SystemTap_Tapset_Reference/en-US/context.xml b/doc/SystemTap_Tapset_Reference/en-US/context.xml
index df271d0f..2fa8c63e 100644
--- a/doc/SystemTap_Tapset_Reference/en-US/context.xml
+++ b/doc/SystemTap_Tapset_Reference/en-US/context.xml
@@ -98,13 +98,6 @@
Return the effective uid of the current process.
</para>
</formalpara>
-<formalpara id="cpuid">
- <title>cpuid:long()</title>
- <indexterm><primary>cpuid</primary></indexterm>
- <para>
- Return the current cpu number.
- </para>
-</formalpara>
<formalpara id="cpu">
<title>cpu:long()</title>
<indexterm><primary>cpu</primary></indexterm>
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();
%}