From: Nick Alcock Date: Wed, 3 Jun 2020 12:21:56 +0000 (+0100) Subject: libctf: move existing inlines into ctf-inlines.h X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2c9ca36be17839467dc88dd8c857bb3226f782e6;p=deliverable%2Fbinutils-gdb.git libctf: move existing inlines into ctf-inlines.h Just housekeeping. libctf/ * ctf-impl.h (ctf_get_ctt_size): Move definition from here... * ctf-inlines.h (ctf_get_ctt_size): ... to here. --- diff --git a/libctf/ChangeLog b/libctf/ChangeLog index 329e69c5f2..b3a816cb86 100644 --- a/libctf/ChangeLog +++ b/libctf/ChangeLog @@ -1,3 +1,8 @@ +2020-07-22 Nick Alcock + + * ctf-impl.h (ctf_get_ctt_size): Move definition from here... + * ctf-inlines.h (ctf_get_ctt_size): ... to here. + 2020-07-22 Nick Alcock * ctf-hash.c (ctf_dynset_eq_string): New. diff --git a/libctf/ctf-impl.h b/libctf/ctf-impl.h index 7d583ab667..81a3c62dcf 100644 --- a/libctf/ctf-impl.h +++ b/libctf/ctf-impl.h @@ -352,14 +352,6 @@ struct ctf_archive_internal #define LCTF_VBYTES(fp, kind, size, vlen) \ ((fp)->ctf_fileops->ctfo_get_vbytes(kind, size, vlen)) -static inline ssize_t ctf_get_ctt_size (const ctf_file_t *fp, - const ctf_type_t *tp, - ssize_t *sizep, - ssize_t *incrementp) -{ - return (fp->ctf_fileops->ctfo_get_ctt_size (fp, tp, sizep, incrementp)); -} - #define LCTF_CHILD 0x0001 /* CTF container is a child */ #define LCTF_RDWR 0x0002 /* CTF container is writable */ #define LCTF_DIRTY 0x0004 /* CTF container has been modified */ diff --git a/libctf/ctf-inlines.h b/libctf/ctf-inlines.h index f9c1b2adbf..4bec97b11b 100644 --- a/libctf/ctf-inlines.h +++ b/libctf/ctf-inlines.h @@ -31,6 +31,15 @@ extern "C" #error "ctf-inlines.h" should not be included directly: include "ctf-impl.h". #endif +static inline ssize_t +ctf_get_ctt_size (const ctf_file_t *fp, + const ctf_type_t *tp, + ssize_t *sizep, + ssize_t *incrementp) +{ + return (fp->ctf_fileops->ctfo_get_ctt_size (fp, tp, sizep, incrementp)); +} + static inline int ctf_dynhash_cinsert (ctf_dynhash_t *h, const void *k, const void *v)