X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fbytecode%2Fbytecode.c;fp=src%2Fcommon%2Fbytecode%2Fbytecode.c;h=1798f9ba27b3fc035c6aa0af594a261e55f7b7a1;hp=28224e30f141463978de1dfe3a12438f6a0c61b5;hb=ca806b0b247f89c62ac628a7779ae84049a8c2d7;hpb=a4705d55c62276cb913c64832f383e27aa72668b diff --git a/src/common/bytecode/bytecode.c b/src/common/bytecode/bytecode.c index 28224e30f..1798f9ba2 100644 --- a/src/common/bytecode/bytecode.c +++ b/src/common/bytecode/bytecode.c @@ -24,7 +24,6 @@ int get_count_order(unsigned int count) return order; } -LTTNG_HIDDEN int bytecode_init(struct lttng_bytecode_alloc **fb) { uint32_t alloc_len; @@ -70,7 +69,6 @@ int32_t bytecode_reserve(struct lttng_bytecode_alloc **fb, uint32_t align, uint3 return ret; } -LTTNG_HIDDEN int bytecode_push(struct lttng_bytecode_alloc **fb, const void *data, uint32_t align, uint32_t len) { @@ -83,7 +81,6 @@ int bytecode_push(struct lttng_bytecode_alloc **fb, const void *data, return 0; } -LTTNG_HIDDEN int bytecode_push_logical(struct lttng_bytecode_alloc **fb, struct logical_op *data, uint32_t align, uint32_t len, @@ -101,7 +98,6 @@ int bytecode_push_logical(struct lttng_bytecode_alloc **fb, return 0; } -LTTNG_HIDDEN int bytecode_push_get_payload_root(struct lttng_bytecode_alloc **bytecode) { int ret; @@ -121,7 +117,6 @@ end: return ret; } -LTTNG_HIDDEN int bytecode_push_get_context_root(struct lttng_bytecode_alloc **bytecode) { int ret; @@ -141,7 +136,6 @@ end: return ret; } -LTTNG_HIDDEN int bytecode_push_get_app_context_root(struct lttng_bytecode_alloc **bytecode) { int ret; @@ -161,7 +155,6 @@ end: return ret; } -LTTNG_HIDDEN int bytecode_push_get_index_u64(struct lttng_bytecode_alloc **bytecode, uint64_t index) { @@ -187,7 +180,6 @@ end: return ret; } -LTTNG_HIDDEN int bytecode_push_get_symbol(struct lttng_bytecode_alloc **bytecode, struct lttng_bytecode_alloc **bytecode_reloc, const char *symbol) @@ -255,7 +247,6 @@ end: * * Return allocated bytecode or NULL on error. */ -LTTNG_HIDDEN struct lttng_bytecode *lttng_bytecode_copy( const struct lttng_bytecode *orig_f) {