From 7172902caa455601e0d7429378e898eb12bbb2ba Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 28 Sep 2010 10:54:09 -0400 Subject: [PATCH] Development tree reorganisation Separate the "converter" files from the "formats" files, so the converter can deal with multiple formats. Formats will register to the converter as plugins. Signed-off-by: Mathieu Desnoyers --- {lib/types => converter}/types.c | 2 +- {lib => formats/ctf}/types/enum.c | 0 {lib => formats/ctf}/types/float.c | 0 {lib => formats/ctf}/types/integer.c | 0 {lib => formats/ctf}/types/string.c | 0 {lib => formats/ctf}/types/struct.c | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename {lib/types => converter}/types.c (98%) rename {lib => formats/ctf}/types/enum.c (100%) rename {lib => formats/ctf}/types/float.c (100%) rename {lib => formats/ctf}/types/integer.c (100%) rename {lib => formats/ctf}/types/string.c (100%) rename {lib => formats/ctf}/types/struct.c (100%) diff --git a/lib/types/types.c b/converter/types.c similarity index 98% rename from lib/types/types.c rename to converter/types.c index f6e9317c..f4843e6a 100644 --- a/lib/types/types.c +++ b/converter/types.c @@ -1,5 +1,5 @@ /* - * Common Trace Format + * Common Trace Format - Converter * * Types registry. * diff --git a/lib/types/enum.c b/formats/ctf/types/enum.c similarity index 100% rename from lib/types/enum.c rename to formats/ctf/types/enum.c diff --git a/lib/types/float.c b/formats/ctf/types/float.c similarity index 100% rename from lib/types/float.c rename to formats/ctf/types/float.c diff --git a/lib/types/integer.c b/formats/ctf/types/integer.c similarity index 100% rename from lib/types/integer.c rename to formats/ctf/types/integer.c diff --git a/lib/types/string.c b/formats/ctf/types/string.c similarity index 100% rename from lib/types/string.c rename to formats/ctf/types/string.c diff --git a/lib/types/struct.c b/formats/ctf/types/struct.c similarity index 100% rename from lib/types/struct.c rename to formats/ctf/types/struct.c -- 2.34.1