summaryrefslogtreecommitdiffstats
path: root/tapset/endian.stp
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 /tapset/endian.stp
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.
Diffstat (limited to 'tapset/endian.stp')
-rw-r--r--tapset/endian.stp8
1 files changed, 0 insertions, 8 deletions
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);
%}