Files
Xenia-Canary/src/xenia/cpu/stack_walker_posix.cc
2025-07-19 14:42:21 -07:00

25 lines
788 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