summaryrefslogtreecommitdiff
path: root/usr/src/lib/libdisasm/common/libdisasm.h
diff options
context:
space:
mode:
authorRichard Lowe <richlowe@richlowe.net>2013-02-09 17:21:16 -0500
committerRichard Lowe <richlowe@richlowe.net>2013-03-17 18:53:58 -0400
commit702941cd97e30d600c2c1275823bc58231b2c361 (patch)
tree2241e87e78f1f9bd2888920010c1739a4309256d /usr/src/lib/libdisasm/common/libdisasm.h
parent8cc2da61b2209ea79a015eead3f390ecf885fcfb (diff)
downloadillumos-joyent-702941cd97e30d600c2c1275823bc58231b2c361.tar.gz
3544 save-args matcher could be considerably more robust
3545 save-args matcher should accept saves may be out-of-order Reviewed by: Joshua M. Clulow <josh@sysmgr.org> Reviewed by: Robert Mustacchi <rm@joyent.com> Reviewed by: Albert Lee <trisk@nexenta.com> Reviewed by: Hans Rosenfeld <hans.rosenfeld@nexenta.com> Approved by: Gordon Ross <gwr@nexenta.com>
Diffstat (limited to 'usr/src/lib/libdisasm/common/libdisasm.h')
-rw-r--r--usr/src/lib/libdisasm/common/libdisasm.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/lib/libdisasm/common/libdisasm.h b/usr/src/lib/libdisasm/common/libdisasm.h
index bcd7318cd1..3329d565f5 100644
--- a/usr/src/lib/libdisasm/common/libdisasm.h
+++ b/usr/src/lib/libdisasm/common/libdisasm.h
@@ -27,8 +27,6 @@
#ifndef _LIBDISASM_H
#define _LIBDISASM_H
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include <sys/types.h>
#ifdef __cplusplus
@@ -67,6 +65,7 @@ extern void dis_set_data(dis_handle_t *, void *);
extern void dis_flags_set(dis_handle_t *, int f);
extern void dis_flags_clear(dis_handle_t *, int f);
extern int dis_max_instrlen(dis_handle_t *);
+extern int dis_instrlen(dis_handle_t *, uint64_t);
/* libdisasm errors */
#define E_DIS_NOMEM 1 /* Out of memory */