diff options
author | Joshua M. Clulow <jmc@joyent.com> | 2012-11-27 08:55:56 +0000 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2014-02-25 12:53:29 -0500 |
commit | f497f9fe231e0e400f339c84a7d80c4aae2ac4d5 (patch) | |
tree | db57208c9d59056b7465112c0cec0cd97e1674f3 /usr/src/uts/common/sys/dtrace.h | |
parent | b0f673c4626e4cb1db7785287eaeed2731dfefe8 (diff) | |
download | illumos-joyent-f497f9fe231e0e400f339c84a7d80c4aae2ac4d5.tar.gz |
4477 DTrace should speak JSON
Reviewed by: Bryan Cantrill <bmc@joyent.com>
Approved by: Gordon Ross <gwr@nexenta.com>
Diffstat (limited to 'usr/src/uts/common/sys/dtrace.h')
-rw-r--r-- | usr/src/uts/common/sys/dtrace.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/uts/common/sys/dtrace.h b/usr/src/uts/common/sys/dtrace.h index 5da41b409b..005bd62ebd 100644 --- a/usr/src/uts/common/sys/dtrace.h +++ b/usr/src/uts/common/sys/dtrace.h @@ -289,8 +289,10 @@ typedef enum dtrace_probespec { #define DIF_SUBR_TOUPPER 44 #define DIF_SUBR_TOLOWER 45 #define DIF_SUBR_GETF 46 +#define DIF_SUBR_JSON 47 +#define DIF_SUBR_STRTOLL 48 -#define DIF_SUBR_MAX 46 /* max subroutine value */ +#define DIF_SUBR_MAX 48 /* max subroutine value */ typedef uint32_t dif_instr_t; |