diff options
Diffstat (limited to 'include/ctf-api.h')
-rw-r--r-- | include/ctf-api.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ctf-api.h b/include/ctf-api.h index f221d17..b3cfd39 100644 --- a/include/ctf-api.h +++ b/include/ctf-api.h @@ -230,7 +230,8 @@ typedef struct ctf_snapshot_id _CTF_ITEM (ECTF_NEXT_WRONGFUN, "Wrong iteration function called.") \ _CTF_ITEM (ECTF_NEXT_WRONGFP, "Iteration entity changed in mid-iterate.") \ _CTF_ITEM (ECTF_FLAGS, "CTF header contains flags unknown to libctf.") \ - _CTF_ITEM (ECTF_NEEDSBFD, "This feature needs a libctf with BFD support.") + _CTF_ITEM (ECTF_NEEDSBFD, "This feature needs a libctf with BFD support.") \ + _CTF_ITEM (ECTF_INCOMPLETE, "Type is not a complete type.") #define ECTF_BASE 1000 /* Base value for libctf errnos. */ @@ -243,7 +244,7 @@ _CTF_ERRORS #undef _CTF_FIRST }; -#define ECTF_NERR (ECTF_NEEDSBFD - ECTF_BASE + 1) /* Count of CTF errors. */ +#define ECTF_NERR (ECTF_INCOMPLETE - ECTF_BASE + 1) /* Count of CTF errors. */ /* The CTF data model is inferred to be the caller's data model or the data model of the given object, unless ctf_setmodel is explicitly called. */ |