Files
Xenia-Canary/src/xenia/cpu/stack_walker_posix.cc
2017-02-10 23:54:10 -06:00

24 lines
787 B
C++

/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2017 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#include "xenia/cpu/stack_walker.h"
#include "xenia/base/logging.h"
namespace xe {
namespace cpu {
std::unique_ptr<StackWalker> StackWalker::Create(
backend::CodeCache* code_cache) {
XELOGD("Stack walker unimplemented on posix");
return nullptr;
}
} // namespace cpu
} // namespace xe