diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2007-10-21 16:34:49 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2007-10-21 16:34:49 -0400 |
commit | 24993e4fcae48ca014e6b53f3f9a011c9cfa8f06 (patch) | |
tree | 90080b050ab62e79e7d111cc764a75dba91ad485 /tapset/endian.stp | |
parent | 11088605d9c0ab753e613b9ae52b6e59948cfc83 (diff) | |
parent | f994dd4997067ca69b3b10ff8fa1547987aed585 (diff) | |
download | systemtap-steved-24993e4fcae48ca014e6b53f3f9a011c9cfa8f06.tar.gz systemtap-steved-24993e4fcae48ca014e6b53f3f9a011c9cfa8f06.tar.xz systemtap-steved-24993e4fcae48ca014e6b53f3f9a011c9cfa8f06.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'tapset/endian.stp')
-rw-r--r-- | tapset/endian.stp | 8 |
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); %} |