summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2007-10-17 12:53:44 +0000
committerhunt <hunt>2007-10-17 12:53:44 +0000
commit03b04c0d2f9adf117c7e3894244f135d66167461 (patch)
tree69680038806260fd0ed6a0b095e1654b4915ff6e
parent04fa6e021596935f96dc755d5f7bc56ae4884ca9 (diff)
downloadsystemtap-steved-03b04c0d2f9adf117c7e3894244f135d66167461.tar.gz
systemtap-steved-03b04c0d2f9adf117c7e3894244f135d66167461.tar.xz
systemtap-steved-03b04c0d2f9adf117c7e3894244f135d66167461.zip
2007-10-17 Martin Hunt <hunt@redhat.com>
PR5000 * endian.stp (set_endian): Remove.
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/endian.stp8
2 files changed, 4 insertions, 8 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index e6855b1f..f242c310 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,7 @@
+2007-10-17 Martin Hunt <hunt@redhat.com>
+ PR5000
+ * endian.stp (set_endian): Remove.
+
2007-10-15 Dave Wilder <dwilder@us.ibm.com>
*aux_syscalls.stp:_dfd_str Added test for 32-bit value of AT_FDCWD
diff --git a/tapset/endian.stp b/tapset/endian.stp
index c3b2b212..34522cd9 100644
--- a/tapset/endian.stp
+++ b/tapset/endian.stp
@@ -1,11 +1,3 @@
-# set the default endianess for binary printf
-# val: 0 - native (default)
-# 1 - little endian
-# 2 - big endian
-function set_endian:long (val:long) %{
- _stp_endian = THIS->val;
-%}
-
function big_endian2:long (val:long) %{ /* pure */
THIS->__retvalue = cpu_to_be16(THIS->val);
%}