Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
bd97d72a
O
oceanbase
项目概览
Metz
/
oceanbase
与 Fork 源项目一致
Fork自
oceanbase / oceanbase
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
O
oceanbase
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
bd97d72a
编写于
11月 11, 2021
作者:
N
nroskill
提交者:
LINGuanRen
11月 11, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add guard variable in try-catch stmt to aviod exception not caught
上级
a9f411e7
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
19 addition
and
1 deletion
+19
-1
deps/oblib/src/common/ob_smart_call.h
deps/oblib/src/common/ob_smart_call.h
+3
-0
deps/oblib/src/lib/coro/co_user_thread.h
deps/oblib/src/lib/coro/co_user_thread.h
+3
-0
deps/oblib/src/lib/coro/thread.cpp
deps/oblib/src/lib/coro/thread.cpp
+3
-0
deps/oblib/src/lib/utility/ob_hang_fatal_error.cpp
deps/oblib/src/lib/utility/ob_hang_fatal_error.cpp
+8
-1
deps/oblib/src/lib/utility/ob_hang_fatal_error.h
deps/oblib/src/lib/utility/ob_hang_fatal_error.h
+2
-0
未找到文件。
deps/oblib/src/common/ob_smart_call.h
浏览文件 @
bd97d72a
...
...
@@ -84,9 +84,12 @@ inline int call_with_new_stack(SContext& sctx)
std::function<int()> f = [&]() { \
int ret = OB_SUCCESS; \
try { \
in_try_stmt = true; \
ret = func; \
in_try_stmt = false; \
} catch (OB_BASE_EXCEPTION & except) { \
ret = except.get_errno(); \
in_try_stmt = false; \
} \
return ret; \
}; \
...
...
deps/oblib/src/lib/coro/co_user_thread.h
浏览文件 @
bd97d72a
...
...
@@ -294,9 +294,12 @@ int CoKThreadTemp<Thread>::start()
Thread
*
thread
=
nullptr
;
if
(
OB_FAIL
(
create_thread
(
thread
,
[
this
,
i
]
{
try
{
common
::
in_try_stmt
=
true
;
this
->
run
(
i
);
common
::
in_try_stmt
=
false
;
}
catch
(
common
::
OB_BASE_EXCEPTION
&
except
)
{
UNUSED
(
except
);
common
::
in_try_stmt
=
false
;
}
})))
{
break
;
...
...
deps/oblib/src/lib/coro/thread.cpp
浏览文件 @
bd97d72a
...
...
@@ -221,11 +221,14 @@ void* Thread::__th_start(void* arg)
th
->
pid_
=
getpid
();
th
->
tid_
=
static_cast
<
pid_t
>
(
syscall
(
__NR_gettid
));
try
{
in_try_stmt
=
true
;
th
->
runnable_
();
in_try_stmt
=
false
;
}
catch
(
OB_BASE_EXCEPTION
&
except
)
{
// we don't catch other exception because we don't know how to handle it
_LOG_ERROR
(
"Exception caught!!! errno = %d, exception info = %s"
,
except
.
get_errno
(),
except
.
what
());
ret
=
OB_ERR_UNEXPECTED
;
in_try_stmt
=
false
;
}
}
}
...
...
deps/oblib/src/lib/utility/ob_hang_fatal_error.cpp
浏览文件 @
bd97d72a
...
...
@@ -23,6 +23,7 @@ void right_to_die_or_duty_to_live_c()
namespace
oceanbase
{
namespace
common
{
RLOCAL
(
bool
,
in_try_stmt
);
// To die or to live, it's a problem.
void
right_to_die_or_duty_to_live
()
...
...
@@ -35,7 +36,13 @@ void right_to_die_or_duty_to_live()
sleep
(
120
);
}
#else
throw
OB_EXCEPTION
<
OB_ERR_UNEXPECTED
>
();
if
(
in_try_stmt
)
{
throw
OB_EXCEPTION
<
OB_ERR_UNEXPECTED
>
();
}
else
{
while
(
true
)
{
sleep
(
5
);
}
}
#endif
}
...
...
deps/oblib/src/lib/utility/ob_hang_fatal_error.h
浏览文件 @
bd97d72a
...
...
@@ -14,11 +14,13 @@
#define SRC_LIB_UTILITY_OB_HANG_FATAL_ERROR_H_
#include <exception>
#include "lib/coro/co_var.h"
namespace
oceanbase
{
namespace
common
{
extern
void
right_to_die_or_duty_to_live
();
extern
RLOCAL
(
bool
,
in_try_stmt
);
struct
OB_BASE_EXCEPTION
:
public
std
::
exception
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录