Initial experiment with new kernel export format.
This commit is contained in:
22
src/xenia/kernel/util/shim_utils.cc
Normal file
22
src/xenia/kernel/util/shim_utils.cc
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* Xenia : Xbox 360 Emulator Research Project *
|
||||
******************************************************************************
|
||||
* Copyright 2015 Ben Vanik. All rights reserved. *
|
||||
* Released under the BSD license - see LICENSE in the root for more details. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include "xenia/kernel/util/shim_utils.h"
|
||||
|
||||
namespace xe {
|
||||
namespace kernel {
|
||||
namespace shim {
|
||||
|
||||
thread_local StringBuffer string_buffer_;
|
||||
|
||||
StringBuffer* thread_local_string_buffer() { return &string_buffer_; }
|
||||
|
||||
} // namespace shim
|
||||
} // namespace kernel
|
||||
} // namespace xe
|
||||
Reference in New Issue
Block a user