Move internal headers to 'src/' dir
authorMichael Jeanson <mjeanson@efficios.com>
Fri, 2 Apr 2021 18:45:42 +0000 (14:45 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 9 Apr 2021 15:46:59 +0000 (11:46 -0400)
commit9d315d6d74aac2986b10d708c864d152a0febec7
treec93477f79cd01ab012616d2638e94f14fda4faa6
parent74e79a0da99992c182da26abf45447722eaa400d
Move internal headers to 'src/' dir

Move internal headers from the global 'include' directory to their
respective private directories under 'src/'. Remove the 'ust-' prefix
when appropriate as they are now included with the 'common/' path which
makes it easier to distinguish public and internal headers.

This is part of an effort to standardize our autotools setup across
projects to simplify maintenance.

Change-Id: If5510bbe9294ba1f0dcd4b101b363e7ef64e255d
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
92 files changed:
.gitignore
configure.ac
include/Makefile.am
include/ust-bitfield.h [deleted file]
include/ust-bitmap.h [deleted file]
include/ust-comm.h [deleted file]
include/ust-compat.h [deleted file]
include/ust-context-provider.h [deleted file]
include/ust-dlfcn.h [deleted file]
include/ust-dynamic-type.h [deleted file]
include/ust-elf.h [deleted file]
include/ust-fd.h [deleted file]
include/ust-helper.h [deleted file]
include/ust-share.h [deleted file]
include/ust-snprintf.h [deleted file]
include/ust-tid.h [deleted file]
include/usterr-signal-safe.h [deleted file]
src/Makefile.am
src/common/.placeholder [deleted file]
src/common/Makefile.am [new file with mode: 0644]
src/common/align.h [new file with mode: 0644]
src/common/bitfield.h [new file with mode: 0644]
src/common/bitmap.h [new file with mode: 0644]
src/common/compat/dlfcn.h [new file with mode: 0644]
src/common/compat/tid.h [new file with mode: 0644]
src/common/dynamic-type.h [new file with mode: 0644]
src/common/elf.h [new file with mode: 0644]
src/common/logging.h [new file with mode: 0644]
src/common/macros.h [new file with mode: 0644]
src/common/patient.h [new file with mode: 0644]
src/common/safe-snprintf.h [new file with mode: 0644]
src/common/ust-context-provider.h [new file with mode: 0644]
src/common/ust-fd.h [new file with mode: 0644]
src/common/ustcomm.h [new file with mode: 0644]
src/libcounter/counter-api.h
src/libcounter/counter.c
src/libcounter/shm.c
src/libcounter/shm.h
src/liblttng-ust-comm/lttng-ust-comm.c
src/liblttng-ust-comm/lttng-ust-fd-tracker.c
src/liblttng-ust-ctl/ustctl.c
src/liblttng-ust-dl/lttng-ust-dl.c
src/liblttng-ust-fd/lttng-ust-fd.c
src/liblttng-ust-fork/ustfork.c
src/liblttng-ust-java-agent/jni/common/lttng_ust_context.c
src/liblttng-ust-libc-wrapper/lttng-ust-malloc.c
src/liblttng-ust-libc-wrapper/lttng-ust-pthread.c
src/liblttng-ust/context-internal.h
src/liblttng-ust/event-notifier-notification.c
src/liblttng-ust/getenv.c
src/liblttng-ust/lttng-bytecode-specialize.c
src/liblttng-ust/lttng-bytecode-validator.c
src/liblttng-ust/lttng-bytecode.c
src/liblttng-ust/lttng-bytecode.h
src/liblttng-ust/lttng-clock.c
src/liblttng-ust/lttng-context-cgroup-ns.c
src/liblttng-ust/lttng-context-ipc-ns.c
src/liblttng-ust/lttng-context-net-ns.c
src/liblttng-ust/lttng-context-perf-counters.c
src/liblttng-ust/lttng-context-provider.c
src/liblttng-ust/lttng-context-time-ns.c
src/liblttng-ust/lttng-context-uts-ns.c
src/liblttng-ust/lttng-context-vtid.c
src/liblttng-ust/lttng-context.c
src/liblttng-ust/lttng-events.c
src/liblttng-ust/lttng-getcpu.c
src/liblttng-ust/lttng-probes.c
src/liblttng-ust/lttng-ring-buffer-client-template.h
src/liblttng-ust/lttng-ring-buffer-metadata-client-template.h
src/liblttng-ust/lttng-tracer-core.h
src/liblttng-ust/lttng-ust-abi.c
src/liblttng-ust/lttng-ust-comm.c
src/liblttng-ust/lttng-ust-dynamic-type.c
src/liblttng-ust/lttng-ust-elf.c
src/liblttng-ust/lttng-ust-statedump.c
src/liblttng-ust/tracef.c
src/liblttng-ust/tracelog.c
src/liblttng-ust/tracepoint.c
src/liblttng-ust/ust-core.c
src/liblttng-ust/ust-events-internal.h
src/libringbuffer/frontend_types.h
src/libringbuffer/ring_buffer_backend.c
src/libringbuffer/ring_buffer_frontend.c
src/libringbuffer/shm.c
src/libringbuffer/shm.h
src/snprintf/core.c
src/snprintf/patient_write.c
src/snprintf/snprintf.c
tests/compile/test-app-ctx/hello.c
tests/unit/libringbuffer/shm.c
tests/unit/snprintf/snprintf.c
tests/unit/ust-elf/ust-elf.c
This page took 0.032517 seconds and 4 git commands to generate.