Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
inline two C files that were included (gosh)
[simgrid.git] / src / xbt / backtrace_dummy.cpp
diff --git a/src/xbt/backtrace_dummy.cpp b/src/xbt/backtrace_dummy.cpp
deleted file mode 100644 (file)
index 1d98b2a..0000000
+++ /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 <xbt/backtrace.hpp>
-
-/* 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<std::string> resolve_backtrace(xbt_backtrace_location_t const* loc, std::size_t count)
-{
-  return std::vector<std::string>();
-}
-
-}
-}