diff options
| author | Adam H. Leventhal <ahl@delphix.com> | 2012-07-25 19:05:31 -0400 |
|---|---|---|
| committer | Adam H. Leventhal <ahl@delphix.com> | 2012-07-25 19:05:31 -0400 |
| commit | e5803b76927480e8f9b67b22201c484ccf4c2bcf (patch) | |
| tree | b745b1558831f07bf4527082dad827ff9366393b /usr/src/lib/libdtrace/common/dt_error.c | |
| parent | ff50e8e5ae1af23788a33c5296dd2009f3b8baf7 (diff) | |
| download | illumos-joyent-e5803b76927480e8f9b67b22201c484ccf4c2bcf.tar.gz | |
3021 option for time-ordered output from dtrace(1M)
3022 DTrace: keys should not affect the sort order when sorting by value
3023 it should be possible to dereference dynamic variables
3024 D integer narrowing needs some work
3025 register leak in D code generation
3026 libdtrace should set LD_NOLAZYLOAD=1 to help the pid provider
Reviewed by: Bryan Cantrill <bmc@joyent.com>
Reviewed by: Eric Schrock <eschrock@delphix.com>
Reviewed by: Matt Ahrens <mahrens@delphix.com>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src/lib/libdtrace/common/dt_error.c')
| -rw-r--r-- | usr/src/lib/libdtrace/common/dt_error.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr/src/lib/libdtrace/common/dt_error.c b/usr/src/lib/libdtrace/common/dt_error.c index 0bfabc919c..9c1cbd73bc 100644 --- a/usr/src/lib/libdtrace/common/dt_error.c +++ b/usr/src/lib/libdtrace/common/dt_error.c @@ -18,11 +18,16 @@ * * CDDL HEADER END */ + /* * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ +/* + * Copyright (c) 2012 by Delphix. All rights reserved. + */ + #include <strings.h> #include <dt_impl.h> @@ -36,7 +41,6 @@ static const struct { { EDT_VERSREDUCED, "Requested version conflicts with earlier setting" }, { EDT_CTF, "Unexpected libctf error" }, { EDT_COMPILER, "Error in D program compilation" }, - { EDT_NOREG, "Insufficient registers to generate code" }, { EDT_NOTUPREG, "Insufficient tuple registers to generate code" }, { EDT_NOMEM, "Memory allocation failure" }, { EDT_INT2BIG, "Integer constant table limit exceeded" }, |
