summaryrefslogtreecommitdiff
path: root/usr/src/common/ctf/ctf_error.c
diff options
context:
space:
mode:
authorRobert Mustacchi <rm@joyent.com>2012-11-22 06:11:12 +0000
committerRobert Mustacchi <rm@joyent.com>2012-11-22 06:11:12 +0000
commiteac066288b29211976a0add347eb3990834cddb0 (patch)
tree71e75ff46f596a67dd96e04cc31865f9aa3aad32 /usr/src/common/ctf/ctf_error.c
parent07de33ff39abfed09baa8bd74995810e038e675b (diff)
downloadillumos-joyent-eac066288b29211976a0add347eb3990834cddb0.tar.gz
OS-1474 Want ::typedef
OS-1598 Want mdb -e OS-1600 Want an mdb test suite driver OS-1632 mdb on x86 should be able to print alternate register names OS-1699 libctf should support removing a dynamic type OS-1700 libctf does not validate arrays correctly OS-1701 libctf does not validate function types correctly
Diffstat (limited to 'usr/src/common/ctf/ctf_error.c')
-rw-r--r--usr/src/common/ctf/ctf_error.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr/src/common/ctf/ctf_error.c b/usr/src/common/ctf/ctf_error.c
index 888c6c848b..fe3d0de0cb 100644
--- a/usr/src/common/ctf/ctf_error.c
+++ b/usr/src/common/ctf/ctf_error.c
@@ -23,8 +23,9 @@
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
-
-#pragma ident "%Z%%M% %I% %E% SMI"
+/*
+ * Copyright (c) 2012, Joyent, Inc.
+ */
#include <ctf_impl.h>
@@ -73,6 +74,8 @@ static const char *const _ctf_errlist[] = {
"Limit on number of dynamic types reached", /* ECTF_FULL */
"Duplicate member name definition", /* ECTF_DUPMEMBER */
"Conflicting type is already defined", /* ECTF_CONFLICT */
+ "Type has outstanding references", /* ECTF_REFERENCED */
+ "Type is not a dynamic type" /* ECTF_NOTDYN */
};
static const int _ctf_nerr = sizeof (_ctf_errlist) / sizeof (_ctf_errlist[0]);