diff options
author | Rui Paulo <rpaulo@FreeBSD.org> | 2010-08-02 12:13:33 +0000 |
---|---|---|
committer | Rui Paulo <rpaulo@FreeBSD.org> | 2010-08-02 12:13:33 +0000 |
commit | e0ea83ebb1a4b194c927cb114766e8781676380b (patch) | |
tree | 1bf8e417b1e4092355d2478f7c38c9db7e093700 /lib/libdtrace/common/dt_error.c | |
parent | 37ddcfe2bb1d3b458470402a871a52af23e260e6 (diff) |
Diffstat (limited to 'lib/libdtrace/common/dt_error.c')
-rw-r--r-- | lib/libdtrace/common/dt_error.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libdtrace/common/dt_error.c b/lib/libdtrace/common/dt_error.c index 5005f593a43da..0bfabc919c857 100644 --- a/lib/libdtrace/common/dt_error.c +++ b/lib/libdtrace/common/dt_error.c @@ -19,12 +19,10 @@ * CDDL HEADER END */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - #include <strings.h> #include <dt_impl.h> @@ -105,7 +103,8 @@ static const struct { { EDT_BADSETOPT, "Invalid setopt() library action" }, { EDT_BADSTACKPC, "Invalid stack program counter size" }, { EDT_BADAGGVAR, "Invalid aggregation variable identifier" }, - { EDT_OVERSION, "Client requested deprecated version of library" } + { EDT_OVERSION, "Client requested deprecated version of library" }, + { EDT_ENABLING_ERR, "Failed to enable probe" } }; static const int _dt_nerr = sizeof (_dt_errlist) / sizeof (_dt_errlist[0]); |