about summary refs log tree commit diff stats
path: root/src/include/os.h
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-05-28 20:29:58 +0800
committerGitHub <noreply@github.com>2025-05-28 14:29:58 +0200
commit01da6215de69f0c61c59b8b494e4fb293fc29f02 (patch)
tree97facc15f93735693a2b8f1e2024592abae4ea87 /src/include/os.h
parent1fc558fcabcf0a9da91ce585bb82924ba0ae3de4 (diff)
downloadbox64-01da6215de69f0c61c59b8b494e4fb293fc29f02.tar.gz
box64-01da6215de69f0c61c59b8b494e4fb293fc29f02.zip
[WOW64] Supported logging to stdout (#2679)
Diffstat (limited to 'src/include/os.h')
-rw-r--r--src/include/os.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/os.h b/src/include/os.h
index f141e99e..03c075e7 100644
--- a/src/include/os.h
+++ b/src/include/os.h
@@ -56,6 +56,7 @@ void PersonalityAddrLimit32Bit(void);
 
 int IsAddrElfOrFileMapped(uintptr_t addr);
 const char* GetNativeName(void* p);
+const char* GetBridgeName(void* p);
 // ----------------------------------------------------------------
 
 #ifndef _WIN32
@@ -96,4 +97,6 @@ extern int isnanf(float);
 #define isinff isinf
 #endif
 
+void PrintfFtrace(int prefix, const char* fmt, ...);
+
 #endif //__OS_H_