mdbx: fix minor typos.

Change-Id: Ib0c62eace9c766844a3f44124b525a3c6373c620
This commit is contained in:
Leonid Yuriev
2019-11-18 00:13:27 +03:00
parent 72c944974a
commit 497aa53e28
6 changed files with 7 additions and 7 deletions

View File

@@ -35,7 +35,7 @@ enum actor_testcase {
enum actor_status {
as_unknown,
as_debuging,
as_debugging,
as_running,
as_successful,
as_killed,

View File

@@ -413,7 +413,7 @@ int osal_actor_poll(mdbx_pid_t &pid, unsigned timeout) {
else if (WIFSIGNALED(status))
childs[pid] = as_killed;
else if (WIFSTOPPED(status))
childs[pid] = as_debuging;
childs[pid] = as_debugging;
else if (WIFCONTINUED(status))
childs[pid] = as_running;
else {

View File

@@ -343,7 +343,7 @@ actor_status osal_actor_info(const mdbx_pid_t pid) {
break;
case EXCEPTION_BREAKPOINT:
case EXCEPTION_SINGLE_STEP:
status = as_debuging;
status = as_debugging;
break;
case STATUS_CONTROL_C_EXIT:
status = as_killed;

View File

@@ -47,8 +47,8 @@ const char *status2str(actor_status status) {
default:
assert(false);
return "?!";
case as_debuging:
return "debuging";
case as_debugging:
return "debugging";
case as_running:
return "running";
case as_successful: