From 6bc5196ff058b77f1e62d2283755728f7a2ee6f2 Mon Sep 17 00:00:00 2001 From: chao an Date: Wed, 31 Aug 2022 23:05:38 +0800 Subject: [PATCH] examples/usrsocktest: add some delay to wait the daemon task ready Signed-off-by: chao an --- examples/usrsocktest/usrsocktest_daemon.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/examples/usrsocktest/usrsocktest_daemon.c b/examples/usrsocktest/usrsocktest_daemon.c index f9c80f84b..849339ab1 100644 --- a/examples/usrsocktest/usrsocktest_daemon.c +++ b/examples/usrsocktest/usrsocktest_daemon.c @@ -2053,6 +2053,12 @@ errout_closepipe: out: pthread_mutex_unlock(&daemon_mutex); usrsocktest_dbg("ret: %d\n", ret); + + if (ret == OK) + { + usleep(100); + } + return ret; } @@ -2329,6 +2335,11 @@ bool usrsocktest_send_delayed_command(const char cmd, sq_addlast(&delayed_cmd->node, &priv->delayed_cmd_threads); + if (ret == OK) + { + usleep(100); + } + return true; }