Browse Source

!15665 mindrt delete HARES

From: @ling_qiao_min
Reviewed-by: @zhanghaibo5,@hangangqiang
Signed-off-by: @hangangqiang
pull/15665/MERGE
mindspore-ci-bot Gitee 5 years ago
parent
commit
6e1fc7bda7
2 changed files with 5 additions and 5 deletions
  1. +1
    -1
      mindspore/core/mindrt/src/actor/actorthread.cc
  2. +4
    -4
      mindspore/core/mindrt/src/actor/iomgr.h

+ 1
- 1
mindspore/core/mindrt/src/actor/actorthread.cc View File

@@ -50,7 +50,7 @@ ActorThread::ActorThread() : readyActors(), workers() {
threadName.resize(MAXTHREADNAMELEN);
}
} else {
threadName = "HARES_MINDRT_ACT";
threadName = "MINDRT_ACT";
}

maxThreads_ = GetMaxThreadCount();


+ 4
- 4
mindspore/core/mindrt/src/actor/iomgr.h View File

@@ -48,12 +48,12 @@ static const char URL_PROTOCOL_IP_SEPARATOR[] = "://";

static const char URL_IP_PORT_SEPARATOR[] = ":";

static const char UDP_EVLOOP_THREADNAME[] = "HARES_LB_Udp";
static const char UDP_EVLOOP_THREADNAME[] = "MINDRT_Udp";

static const char TCP_RECV_EVLOOP_THREADNAME[] = "HARES_LB_TcpR";
static const char TCP_SEND_EVLOOP_THREADNAME[] = "HARES_LB_TcpS";
static const char TCP_RECV_EVLOOP_THREADNAME[] = "MINDRT_TcpR";
static const char TCP_SEND_EVLOOP_THREADNAME[] = "MINDRT_TcpS";

static const char HTTP_CLIENT_EVLOOP_THREADNAME[] = "HARES_LB_Htp";
static const char HTTP_CLIENT_EVLOOP_THREADNAME[] = "MINDRT_Htp";

class IOMgr {
public:


Loading…
Cancel
Save