X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fbt-dummy%2Fbt-dummy.c;fp=formats%2Fbt-dummy%2Fbt-dummy.c;h=0000000000000000000000000000000000000000;hp=fd10ccad39e3f79a500ddf12a87124ec135380ca;hb=dc3fffef7b84cc4af1a7c99828fd57a106cd2257;hpb=f3985ab106d89d8e764c1a8dd0c8bda09b755d10 diff --git a/formats/bt-dummy/bt-dummy.c b/formats/bt-dummy/bt-dummy.c deleted file mode 100644 index fd10ccad..00000000 --- a/formats/bt-dummy/bt-dummy.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - * BabelTrace - Dummy Output - * - * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation - * - * Author: Mathieu Desnoyers - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -void bt_dummy_hook(void) -{ - /* - * Dummy function to prevent the linker from discarding this format as - * "unused" in static builds. - */ -} - -static -int bt_dummy_write_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *stream) -{ - return 0; -} - -static -struct bt_trace_descriptor *bt_dummy_open_trace(const char *path, int flags, - void (*packet_seek)(struct bt_stream_pos *pos, size_t index, - int whence), FILE *metadata_fp) -{ - struct ctf_text_stream_pos *pos; - - pos = g_new0(struct ctf_text_stream_pos, 1); - pos->parent.rw_table = NULL; - pos->parent.event_cb = bt_dummy_write_event; - pos->parent.trace = &pos->trace_descriptor; - return &pos->trace_descriptor; -} - -static -int bt_dummy_close_trace(struct bt_trace_descriptor *td) -{ - struct ctf_text_stream_pos *pos = - container_of(td, struct ctf_text_stream_pos, - trace_descriptor); - free(pos); - return 0; -} - -static -struct bt_format bt_dummy_format = { - .open_trace = bt_dummy_open_trace, - .close_trace = bt_dummy_close_trace, -}; - -static -void __attribute__((constructor)) bt_dummy_init(void) -{ - int ret; - - bt_dummy_format.name = g_quark_from_string("dummy"); - ret = bt_register_format(&bt_dummy_format); - assert(!ret); -} - -static -void __attribute__((destructor)) bt_dummy_exit(void) -{ - bt_unregister_format(&bt_dummy_format); -}