From 6d6c6e3c79216896c45ff87b4bdfd8226a24924e Mon Sep 17 00:00:00 2001 From: 雾聪 <wucong.lyb@alibaba-inc.com> Date: 星期二, 14 十一月 2023 19:22:17 +0800 Subject: [PATCH] update docs; update run_server.sh; fix initlm --- runtime/onnxruntime/third_party/glog/src/utilities.cc | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/runtime/onnxruntime/third_party/glog/src/utilities.cc b/runtime/onnxruntime/third_party/glog/src/utilities.cc index 8b0a1ea..f825470 100644 --- a/runtime/onnxruntime/third_party/glog/src/utilities.cc +++ b/runtime/onnxruntime/third_party/glog/src/utilities.cc @@ -292,6 +292,8 @@ return getpid(); // Linux: getpid returns thread ID when gettid is absent #elif defined GLOG_OS_WINDOWS && !defined GLOG_OS_CYGWIN return static_cast<pid_t>(GetCurrentThreadId()); +#elif defined GLOG_OS_OPENBSD + return getthrid(); #elif defined(HAVE_PTHREAD) // If none of the techniques above worked, we use pthread_self(). return (pid_t)(uintptr_t)pthread_self(); -- Gitblit v1.9.1