X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/583ade834e641196237523b1560cec006e2df3ed..7176085f1a329f1ad90b37aec14a424ec008e4a6:/src/xbt/backtrace_dummy.cpp diff --git a/src/xbt/backtrace_dummy.cpp b/src/xbt/backtrace_dummy.cpp deleted file mode 100644 index 1d98b2ad83..0000000000 --- a/src/xbt/backtrace_dummy.cpp +++ /dev/null @@ -1,28 +0,0 @@ -/* backtrace_dummy -- stubs of this module for non-supported archs */ - -/* Copyright (c) 2008-2018. The SimGrid Team. All rights reserved. */ - -/* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ - -#include "xbt/ex.h" -#include "src/xbt_modinter.h" - -#include - -/* create a backtrace in the given exception */ -size_t xbt_backtrace_current(xbt_backtrace_location_t* loc, size_t count) -{ - return 0; -} - -namespace simgrid { -namespace xbt { - -std::vector resolve_backtrace(xbt_backtrace_location_t const* loc, std::size_t count) -{ - return std::vector(); -} - -} -}