gdb堆栈分析程序运行卡在哪里

反馈后台Server运行卡住,结合以往可能是死锁了或者某个锁已经被抢占了但是在进行某些操作时费时很久,导致其他锁一致在等待。gdb抓到的堆栈如下。

大致浏览了一下,做了个分类:
14 15 103 set_new_agent_msg_state —>重复的线程栈
21-28 35 36 61 dec_agent_pushing_count —>重复的线程栈
21 52 53 55 56 58-60 68-82 106-110 112 recv_agent_online —>重复的线程栈
以上线程的栈分别做了归类 ,我们到代码中查看到这三个函数并无多个锁的嵌套,并且都是在请求锁mmutex_agent_pushing

30 47 54 57 94 111 124 156 158
这些线程的栈虽然没有重复的但是也都没有多个锁的嵌套,并且查看代码发现都是在请求锁m_rwmutex_dev_info

这些分类完后,剩下的线程类似179 167 146这些线程都是些无关的,在排除完这些之后,只剩下102号线程栈了。
单独拿出来看看

Thread 102 (Thread 0x7facb311b700 (LWP 73432)):
#0  0x0000000000bfa0dc in std::_Rb_tree<HString, std::pair<HString const, DeptInfo>, std::_Select1st<std::pair<HString const, DeptInfo> >, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > >::find(HString const&) const ()
#1  0x0000000000bf87fc in isDistDeptIDRange(HString const&, HString const&, std::map<HString, DeptInfo, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > > const&) ()
#2  0x0000000000bf968b in isDistributionApplied(UniAccessDevInfo const&, SecPolicyApplyRange const&, std::map<HString, UserInfo, std::less<HString>, std::allocator<std::pair<HString const, UserInfo> > > const&, std::map<HString, DeptInfo, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > > const&, std::map<HString, DevGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, DevGroupInfo> > > const&, HString const&, std::map<HString, OperatorGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, OperatorGroupInfo> > > const&, std::map<HString, UserGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, UserGroupInfo> > > const&, std::multimap<HString, HString, std::less<HString>, std::allocator<std::pair<HString const, HString> > > const&, bool&, LVPUniServerInnerCheckDevPolicy*) ()
#3  0x0000000000e48171 in SecPolicySWDistBaseManger<LVPPolicySWDistNode, LVPPolicySWDistVT, LVPPolicySWDistVTICallback>::is_policy_should_apply_on_dev(UniAccessDevInfo const&, SecPolicyApplyRange&, std::map<HString, UserInfo, std::less<HString>, std::allocator<std::pair<HString const, UserInfo> > > const&, std::map<HString, DeptInfo, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > > const&, std::map<HString, DevGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, DevGroupInfo> > > const&, HString const&, std::map<HString, OperatorGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, OperatorGroupInfo> > > const&, std::map<HString, UserGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, UserGroupInfo> > > const&, std::multimap<HString, HString, std::less<HString>, std::allocator<std::pair<HString const, HString> > > const&, bool&, HString const&) ()
//代码中calc_task函数里调用了 ---> HIEUtil::RWRecMutex::RLock rLock(m_pDevIsLand->m_rwmutex_dev_info);
//我们在对堆栈做分类时说到了30 47 54 57 94 111 124 156 158这些线程都是在请求m_rwmutex_dev_info,所以阻塞了
//102号线程抢到这把锁后去进行策略应用计算等(is_policy_should_apply_on_dev),这些操作占用时间太久导致了一直占着锁不放,其他线程无法处理业务
#4  0x00000000009cb228 in DistrTaskCalcThread::calc_task(std::map<HString, DevApplyDistTaskRecord, std::less<HString>, std::allocator<std::pair<HString const, DevApplyDistTaskRecord> > >&) ()
#5  0x00000000009cbf3c in DistrTaskCalcThread::calc_all(std::map<HString, HString, std::less<HString>, std::allocator<std::pair<HString const, HString> > >&) ()
#6  0x00000000009cc4c6 in DistrTaskCalcThread::wrapper_run() ()
#7  0x0000000000cb737a in USThreadPoolWrapper::run() ()
#8  0x0000000001777be6 in HThreadReal::run() ()
#9  0x000000000174f333 in startHook ()
#10 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00007face2c70bad in clone () from /lib64/libc.so.6

因为发现有两个锁,所以刚开始怀疑可能时嵌套锁的顺序有问题导致的死锁,但是查了每个相关的线程栈发现这两个锁并无关联,转而认为是其中之一的锁被占用时间过长。正好102号线程栈也验证了

(gdb) 
Thread 179 (Thread 0x7facdc43e700 (LWP 73250)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 178 (Thread 0x7facdbc3d700 (LWP 73251)):
#0  0x00007face2c67c73 in select () from /lib64/libc.so.6
#1  0x00000000018a913b in SIRecvThread::myrun() ()
#2  0x00000000018a93ee in SIRecvThread::run() ()
#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 177 (Thread 0x7facdb43c700 (LWP 73252)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 176 (Thread 0x7facda43a700 (LWP 73254)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 175 (Thread 0x7facd9c39700 (LWP 73255)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000001771cf1 in HThreadTimerEx::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 174 (Thread 0x7facd9438700 (LWP 73256)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x000000000170c31b in USBackModeNotifyStatusChangeThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 173 (Thread 0x7facd8c37700 (LWP 73257)):
#0  0x00007face2c71183 in epoll_wait () from /lib64/libc.so.6
#1  0x00000000018a43f2 in SIIOEpollAcceptThread::run() ()
#2  0x000000000174f333 in startHook ()
#3  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#4  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 172 (Thread 0x7facd8436700 (LWP 73258)):
#0  0x00007face2c71183 in epoll_wait () from /lib64/libc.so.6
#1  0x00000000018995ee in SIIOEpollRecvThread::run() ()
#2  0x000000000174f333 in startHook ()
#3  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#4  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 171 (Thread 0x7facd7c35700 (LWP 73259)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x00000000018a74ca in SISimpleClockEventManger::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 170 (Thread 0x7facd7434700 (LWP 73260)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 169 (Thread 0x7facd6c33700 (LWP 73261)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 168 (Thread 0x7facd4c2f700 (LWP 73265)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 167 (Thread 0x7facd442e700 (LWP 73266)):
#0  0x00007face2c67c73 in select () from /lib64/libc.so.6
#1  0x00000000018a913b in SIRecvThread::myrun() ()
#2  0x00000000018a93ee in SIRecvThread::run() ()
---Type <return> to continue, or q <return> to quit---#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 166 (Thread 0x7facd3c2d700 (LWP 73267)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 165 (Thread 0x7faccf153700 (LWP 73268)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 164 (Thread 0x7facce952700 (LWP 73269)):
#0  0x00007face2c67c73 in select () from /lib64/libc.so.6
#1  0x00000000018a913b in SIRecvThread::myrun() ()
#2  0x00000000018a93ee in SIRecvThread::run() ()
#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 163 (Thread 0x7facce151700 (LWP 73270)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f3e9 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 162 (Thread 0x7faccd950700 (LWP 73271)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x00000000017635b6 in ADBClientFace::run_local_file_record_insert() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 161 (Thread 0x7faccd14f700 (LWP 73272)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 160 (Thread 0x7faccc94e700 (LWP 73273)):
#0  0x00007face2c67c73 in select () from /lib64/libc.so.6
#1  0x00000000018a913b in SIRecvThread::myrun() ()
#2  0x00000000018a93ee in SIRecvThread::run() ()
#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 159 (Thread 0x7faccc14d700 (LWP 73274)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 158 (Thread 0x7faccb94c700 (LWP 73275)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171e492 in HIEUtil::RWRecMutex::_readLock(HIEUtil::LockT<HIEUtil::Mutex>&) const ()
#2  0x000000000171f8db in HIEUtil::RWRecMutex::readLock() const ()
---Type <return> to continue, or q <return> to quit---#3  0x0000000000e76ec0 in DevManager::getDevRecordIDByIP(HString const&, HString&) ()
#4  0x00000000009d88e1 in LVPUniServerRI::deal(LVPRNotifyAuthInfoVT const&, SIContext const&) ()
#5  0x00000000009e09c0 in LVPUniServerRIDealThread<LVPRNotifyAuthInfoVT>::run() ()
#6  0x0000000001777be6 in HThreadReal::run() ()
#7  0x000000000174f3e9 in startHook ()
#8  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#9  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 157 (Thread 0x7face41fa700 (LWP 73277)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000000ed409e in TopoDevStatusProcThread::run() ()
#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 156 (Thread 0x7facd6432700 (LWP 73278)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171e492 in HIEUtil::RWRecMutex::_readLock(HIEUtil::LockT<HIEUtil::Mutex>&) const ()
#2  0x000000000171f8db in HIEUtil::RWRecMutex::readLock() const ()
#3  0x00000000009d628a in LVPUniServerRI::deal(LVPR1XAccessVT const&, SIContext const&) ()
#4  0x00000000009dd950 in LVPUniServerRIDealThread<LVPR1XAccessVT>::run() ()
#5  0x0000000001777be6 in HThreadReal::run() ()
#6  0x000000000174f3e9 in startHook ()
#7  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#8  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 155 (Thread 0x7facca94a700 (LWP 73279)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 154 (Thread 0x7facca149700 (LWP 73280)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f3e9 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 153 (Thread 0x7facc9948700 (LWP 73281)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 152 (Thread 0x7facd5430700 (LWP 73286)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 151 (Thread 0x7facd5c31700 (LWP 73289)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 150 (Thread 0x7facc413d700 (LWP 73296)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000000b0e82d in USSSONotifyThread::run() ()
#3  0x000000000174f3e9 in startHook ()
---Type <return> to continue, or q <return> to quit---#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 149 (Thread 0x7facc393c700 (LWP 73297)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 148 (Thread 0x7facc313b700 (LWP 73298)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000ee3310 in UDPServer::Receive(char*, int, UDPClientInfo&) ()
#2  0x0000000000d15043 in USSSOHuaweiProbeStatusProcThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 147 (Thread 0x7facc293a700 (LWP 73299)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000ee3310 in UDPServer::Receive(char*, int, UDPClientInfo&) ()
#2  0x0000000000d15043 in USSSOHuaweiProbeStatusProcThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 146 (Thread 0x7facc2139700 (LWP 73300)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000ee3310 in UDPServer::Receive(char*, int, UDPClientInfo&) ()
#2  0x0000000000d15043 in USSSOHuaweiProbeStatusProcThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 145 (Thread 0x7facc1938700 (LWP 73301)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 144 (Thread 0x7facc1137700 (LWP 73302)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 143 (Thread 0x7facc0936700 (LWP 73303)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 142 (Thread 0x7facc0135700 (LWP 73304)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 141 (Thread 0x7facbf934700 (LWP 73305)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 140 (Thread 0x7facbf133700 (LWP 73306)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 139 (Thread 0x7facbe932700 (LWP 73307)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 138 (Thread 0x7facbe131700 (LWP 73308)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 137 (Thread 0x7facbd930700 (LWP 73309)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 136 (Thread 0x7facbd12f700 (LWP 73310)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 135 (Thread 0x7facbc92e700 (LWP 73311)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

---Type <return> to continue, or q <return> to quit---Thread 134 (Thread 0x7facbc12d700 (LWP 73312)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 133 (Thread 0x7facbb92c700 (LWP 73313)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 132 (Thread 0x7facbb12b700 (LWP 73314)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 131 (Thread 0x7facba92a700 (LWP 73315)):
#0  0x00007face2f4dbf3 in recvfrom () from /lib64/libpthread.so.0
#1  0x0000000000c2e4e6 in UDPClient::Receive(char*&, int&) ()
#2  0x0000000000b11043 in USSSONotifyRecvThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 130 (Thread 0x7facc6141700 (LWP 73321)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 129 (Thread 0x7facc8145700 (LWP 73322)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 128 (Thread 0x7facc7944700 (LWP 73323)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000001771cf1 in HThreadTimerEx::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 127 (Thread 0x7facc7143700 (LWP 73324)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000000e65f3b in AgentPushCenter::run() ()
#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 126 (Thread 0x7facc6942700 (LWP 73325)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000000945bcb in USAlarmSendMailThread::run() ()
#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 125 (Thread 0x7facb9127700 (LWP 73326)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000000df503a in USAlarmProcThread::run() ()
#3  0x000000000174f3e9 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 124 (Thread 0x7facb8926700 (LWP 73327)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171fa8a in HIEUtil::RWRecMutex::writeLock() const ()
#2  0x0000000000ef5d15 in AgentDevStatusProcCenter::new_agent_status(HString const&, int) ()
#3  0x000000000092c98a in UniServerTimeCheckAgentState::on_timer() ()
#4  0x00000000017720a8 in HThreadTimerExThreadBase::run() ()
#5  0x0000000001777be6 in HThreadReal::run() ()
#6  0x000000000174f333 in startHook ()
#7  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#8  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 123 (Thread 0x7facb8125700 (LWP 73328)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 122 (Thread 0x7facac90e700 (LWP 73351)):
#0  0x00007face2c71183 in epoll_wait () from /lib64/libc.so.6
#1  0x00000000018a43f2 in SIIOEpollAcceptThread::run() ()
#2  0x000000000174f333 in startHook ()
#3  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#4  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 121 (Thread 0x7facac10d700 (LWP 73352)):
#0  0x00007face2c71183 in epoll_wait () from /lib64/libc.so.6
#1  0x00000000018995ee in SIIOEpollRecvThread::run() ()
#2  0x000000000174f3e9 in startHook ()
#3  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#4  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 120 (Thread 0x7facab90c700 (LWP 73353)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x00000000018a74ca in SISimpleClockEventManger::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 119 (Thread 0x7facab10b700 (LWP 73354)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 118 (Thread 0x7facaa90a700 (LWP 73355)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x000000000188999b in SICallMgrAsync::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 117 (Thread 0x7facaa109700 (LWP 73356)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c37404 in sleep () from /lib64/libc.so.6
#2  0x0000000000b54c0f in DBBatInsertFaildAuditInfoThread::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 116 (Thread 0x7faca9908700 (LWP 73357)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x00000000009365e2 in DBBatUpdateDevInfoCenter::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 115 (Thread 0x7faca9107700 (LWP 73358)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x000000000093afa2 in DBBatInsertAuditInfoCenter::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 114 (Thread 0x7faca8906700 (LWP 73359)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 113 (Thread 0x7faca7103700 (LWP 73362)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 112 (Thread 0x7fac968e2700 (LWP 73395)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 111 (Thread 0x7fac960e1700 (LWP 73396)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171e492 in HIEUtil::RWRecMutex::_readLock(HIEUtil::LockT<HIEUtil::Mutex>&) const ()
#2  0x000000000171f8db in HIEUtil::RWRecMutex::readLock() const ()
#3  0x0000000000e792fb in DevManager::getDevRecordIDByAgentIDNotUninstall(HString const&, HString&) ()
#4  0x0000000000b9f5aa in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#5  0x0000000001777be6 in HThreadReal::run() ()
#6  0x000000000174f333 in startHook ()
#7  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#8  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 110 (Thread 0x7fac958e0700 (LWP 73397)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 109 (Thread 0x7fac950df700 (LWP 73398)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 108 (Thread 0x7fac948de700 (LWP 73399)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 107 (Thread 0x7fac940dd700 (LWP 73400)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 106 (Thread 0x7fac938dc700 (LWP 73401)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 105 (Thread 0x7fac854aa700 (LWP 73429)):
#0  0x00007face2c65f0d in poll () from /lib64/libc.so.6
#1  0x00007facd2b63bd6 in pqSocketCheck () from /usr/pgsql-11/lib/libpq.so.5
#2  0x00007facd2b63c60 in pqWaitTimed () from /usr/pgsql-11/lib/libpq.so.5
#3  0x00007facd2b61df1 in PQgetResult () from /usr/pgsql-11/lib/libpq.so.5
---Type <return> to continue, or q <return> to quit---#4  0x00007facd2b620ee in PQexecFinish () from /usr/pgsql-11/lib/libpq.so.5
#5  0x00007facd2de0de3 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#6  0x00007facd2dbdfc6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#7  0x00007facd2dbeee6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#8  0x00007facd2de71f0 in SQLExecute () from /usr/pgsql-11/lib/psqlodbcw.so
#9  0x00007face3b95439 in SQLExecute () from /lib64/libodbc.so.2
#10 0x00000000017904b6 in otl_tmpl_cursor<otl_exc, otl_conn, otl_cur, otl_var>::exec(int, int, unsigned char) [clone .part.100] ()
#11 0x000000000179c59d in otl_tmpl_out_stream<otl_exc, otl_conn, otl_cur, otl_var, tagTIMESTAMP_STRUCT>::flush(int, bool) ()
#12 0x0000000001792301 in HOTLStream::operator<<(HString const&) ()
#13 0x00000000009af698 in DBBatUpdateDevInfoCommon::updatePolScope(std::list<DBBatUpdateDevData<ATypePolicyRecord>, std::allocator<DBBatUpdateDevData<ATypePolicyRecord> > >&) ()
#14 0x0000000000c941b8 in DBBatUpdatePolScopeThread::run() ()
#15 0x0000000001777be6 in HThreadReal::run() ()
#16 0x000000000174f333 in startHook ()
#17 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#18 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 104 (Thread 0x7fac84ca9700 (LWP 73430)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f3e9 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 103 (Thread 0x7facc493e700 (LWP 73431)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e65077 in AgentPushMsgProvider::set_new_agent_msg_state(HString const&) ()
#6  0x0000000000b0069d in SecPolicyThread::wrapper_run() ()
#7  0x0000000000cb737a in USThreadPoolWrapper::run() ()
#8  0x0000000001777be6 in HThreadReal::run() ()
#9  0x000000000174f333 in startHook ()
#10 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 102 (Thread 0x7facb311b700 (LWP 73432)):
---Type <return> to continue, or q <return> to quit---#0  0x0000000000bfa0dc in std::_Rb_tree<HString, std::pair<HString const, DeptInfo>, std::_Select1st<std::pair<HString const, DeptInfo> >, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > >::find(HString const&) const ()
#1  0x0000000000bf87fc in isDistDeptIDRange(HString const&, HString const&, std::map<HString, DeptInfo, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > > const&) ()
#2  0x0000000000bf968b in isDistributionApplied(UniAccessDevInfo const&, SecPolicyApplyRange const&, std::map<HString, UserInfo, std::less<HString>, std::allocator<std::pair<HString const, UserInfo> > > const&, std::map<HString, DeptInfo, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > > const&, std::map<HString, DevGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, DevGroupInfo> > > const&, HString const&, std::map<HString, OperatorGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, OperatorGroupInfo> > > const&, std::map<HString, UserGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, UserGroupInfo> > > const&, std::multimap<HString, HString, std::less<HString>, std::allocator<std::pair<HString const, HString> > > const&, bool&, LVPUniServerInnerCheckDevPolicy*) ()
#3  0x0000000000e48171 in SecPolicySWDistBaseManger<LVPPolicySWDistNode, LVPPolicySWDistVT, LVPPolicySWDistVTICallback>::is_policy_should_apply_on_dev(UniAccessDevInfo const&, SecPolicyApplyRange&, std::map<HString, UserInfo, std::less<HString>, std::allocator<std::pair<HString const, UserInfo> > > const&, std::map<HString, DeptInfo, std::less<HString>, std::allocator<std::pair<HString const, DeptInfo> > > const&, std::map<HString, DevGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, DevGroupInfo> > > const&, HString const&, std::map<HString, OperatorGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, OperatorGroupInfo> > > const&, std::map<HString, UserGroupInfo, std::less<HString>, std::allocator<std::pair<HString const, UserGroupInfo> > > const&, std::multimap<HString, HString, std::less<HString>, std::allocator<std::pair<HString const, HString> > > const&, bool&, HString const&) ()
#4  0x00000000009cb228 in DistrTaskCalcThread::calc_task(std::map<HString, DevApplyDistTaskRecord, std::less<HString>, std::allocator<std::pair<HString const, DevApplyDistTaskRecord> > >&) ()
#5  0x00000000009cbf3c in DistrTaskCalcThread::calc_all(std::map<HString, HString, std::less<HString>, std::allocator<std::pair<HString const, HString> > >&) ()
#6  0x00000000009cc4c6 in DistrTaskCalcThread::wrapper_run() ()
#7  0x0000000000cb737a in USThreadPoolWrapper::run() ()
#8  0x0000000001777be6 in HThreadReal::run() ()
#9  0x000000000174f333 in startHook ()
#10 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 101 (Thread 0x7facb491e700 (LWP 73441)):
#0  0x00007face2c65f0d in poll () from /lib64/libc.so.6
#1  0x00007facd2b63bd6 in pqSocketCheck () from /usr/pgsql-11/lib/libpq.so.5
#2  0x00007facd2b63c60 in pqWaitTimed () from /usr/pgsql-11/lib/libpq.so.5
#3  0x00007facd2b61df1 in PQgetResult () from /usr/pgsql-11/lib/libpq.so.5
#4  0x00007facd2b620ee in PQexecFinish () from /usr/pgsql-11/lib/libpq.so.5
#5  0x00007facd2de0de3 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#6  0x00007facd2dbdfc6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#7  0x00007facd2dbeee6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#8  0x00007facd2de71f0 in SQLExecute () from /usr/pgsql-11/lib/psqlodbcw.so
#9  0x00007face3b95439 in SQLExecute () from /lib64/libodbc.so.2
#10 0x00000000017904b6 in otl_tmpl_cursor<otl_exc, otl_conn, otl_cur, otl_var>::exec(int, int, unsigned char) [clone .part.100] ()
#11 0x000000000179c59d in otl_tmpl_out_stream<otl_exc, otl_conn, otl_cur, otl_var, tagTIMESTAMP_STRUCT>::flush(int, bool) ()
#12 0x0000000001792301 in HOTLStream::operator<<(HString const&) ()
#13 0x00000000009a0232 in DBBatUpdateDevInfoCommon::updateDBRecords(std::list<DBBatUpdateDevData<ATypePolicyRecord>, std::allocator<DBBatUpdateDevData<ATypePolicyRecord> > >&) ()
#14 0x000000000095f0dc in DBBatUpdateDevInfoThread<ATypePolicyRecord>::run() ()
#15 0x0000000001777be6 in HThreadReal::run() ()
#16 0x000000000174f333 in startHook ()
#17 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#18 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 100 (Thread 0x7facb0115700 (LWP 73442)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 99 (Thread 0x7facaf914700 (LWP 73443)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 98 (Thread 0x7facb511f700 (LWP 73444)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 97 (Thread 0x7facb6121700 (LWP 73445)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 96 (Thread 0x7fac9f0f3700 (LWP 73487)):
#0  0x00007face2c65f0d in poll () from /lib64/libc.so.6
#1  0x00007facd2b63bd6 in pqSocketCheck () from /usr/pgsql-11/lib/libpq.so.5
#2  0x00007facd2b63c60 in pqWaitTimed () from /usr/pgsql-11/lib/libpq.so.5
#3  0x00007facd2b61df1 in PQgetResult () from /usr/pgsql-11/lib/libpq.so.5
#4  0x00007facd2b620ee in PQexecFinish () from /usr/pgsql-11/lib/libpq.so.5
#5  0x00007facd2de0de3 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#6  0x00007facd2dbdfc6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#7  0x00007facd2dbeee6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#8  0x00007facd2de71f0 in SQLExecute () from /usr/pgsql-11/lib/psqlodbcw.so
#9  0x00007face3b95439 in SQLExecute () from /lib64/libodbc.so.2
#10 0x00000000017904b6 in otl_tmpl_cursor<otl_exc, otl_conn, otl_cur, otl_var>::exec(int, int, unsigned char) [clone .part.100] ()
#11 0x000000000179c59d in otl_tmpl_out_stream<otl_exc, otl_conn, otl_cur, otl_var, tagTIMESTAMP_STRUCT>::flush(int, bool) ()
#12 0x0000000001792301 in HOTLStream::operator<<(HString const&) ()
#13 0x00000000009a0f88 in DBBatUpdateDevInfoCommon::updateDBRecords(std::list<DBBatUpdateDevData<ATypeGconfInfo>, std::allocator<DBBatUpdateDevData<ATypeGconfInfo> > > const&) ()
#14 0x0000000000966fac in DBBatUpdateDevInfoThread<ATypeGconfInfo>::run() ()
#15 0x0000000001777be6 in HThreadReal::run() ()
#16 0x000000000174f333 in startHook ()
#17 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#18 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 95 (Thread 0x7fac81ca3700 (LWP 73885)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 94 (Thread 0x7faca6101700 (LWP 74043)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171e492 in HIEUtil::RWRecMutex::_readLock(HIEUtil::LockT<HIEUtil::Mutex>&) const ()
#2  0x000000000171f8db in HIEUtil::RWRecMutex::readLock() const ()
#3  0x0000000000e792fb in DevManager::getDevRecordIDByAgentIDNotUninstall(HString const&, HString&) ()
#4  0x000000000095ccfd in SecPolicyCenter::get_msgs(HString const&, std::vector<AgentPushMsg, std::allocator<AgentPushMsg> >&, long long&) ()
#5  0x0000000000e64cda in AgentPushMsgProvider::inner_get_msgs(HString const&, std::vector<AgentPushMsg, std::allocator<AgentPushMsg> >&, long long&) ()
#6  0x0000000000e64e65 in AgentPushCenter::new_thread_to_push_agent_real(AgentPushMsgProvider*, HString const&) ()
#7  0x0000000000e64f96 in AgentPushCenter::new_thread_to_push_agent(AgentPushMsgProvider*, HString const&) ()
---Type <return> to continue, or q <return> to quit---#8  0x0000000000e65332 in AgentPushMsgProvider::set_new_agent_msg_state(HString const&) ()
#9  0x0000000000b0069d in SecPolicyThread::wrapper_run() ()
#10 0x0000000000cb737a in USThreadPoolWrapper::run() ()
#11 0x0000000001777be6 in HThreadReal::run() ()
#12 0x000000000174f333 in startHook ()
#13 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#14 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 93 (Thread 0x7facc513f700 (LWP 74058)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 92 (Thread 0x7facba129700 (LWP 74060)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 91 (Thread 0x7fac9f8f4700 (LWP 74063)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 90 (Thread 0x7faca50ff700 (LWP 74086)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 89 (Thread 0x7faca48fe700 (LWP 74087)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 88 (Thread 0x7faca40fd700 (LWP 74088)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 87 (Thread 0x7faca38fc700 (LWP 74089)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 86 (Thread 0x7fac9d0ef700 (LWP 74101)):
#0  0x00007face2c65f0d in poll () from /lib64/libc.so.6
#1  0x00007facd2b63bd6 in pqSocketCheck () from /usr/pgsql-11/lib/libpq.so.5
#2  0x00007facd2b63c60 in pqWaitTimed () from /usr/pgsql-11/lib/libpq.so.5
---Type <return> to continue, or q <return> to quit---#3  0x00007facd2b61df1 in PQgetResult () from /usr/pgsql-11/lib/libpq.so.5
#4  0x00007facd2b620ee in PQexecFinish () from /usr/pgsql-11/lib/libpq.so.5
#5  0x00007facd2de0de3 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#6  0x00007facd2dbdfc6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#7  0x00007facd2dbeee6 in ?? () from /usr/pgsql-11/lib/psqlodbcw.so
#8  0x00007facd2de71f0 in SQLExecute () from /usr/pgsql-11/lib/psqlodbcw.so
#9  0x00007face3b95439 in SQLExecute () from /lib64/libodbc.so.2
#10 0x00000000017904b6 in otl_tmpl_cursor<otl_exc, otl_conn, otl_cur, otl_var>::exec(int, int, unsigned char) [clone .part.100] ()
#11 0x000000000179c59d in otl_tmpl_out_stream<otl_exc, otl_conn, otl_cur, otl_var, tagTIMESTAMP_STRUCT>::flush(int, bool) ()
#12 0x0000000001792301 in HOTLStream::operator<<(HString const&) ()
#13 0x000000000098ec03 in DBBatUpdateDevInfoCommon::updateDBRecords(std::list<DBBatUpdateDevData<LVPHostRouteTableInfoVT>, std::allocator<DBBatUpdateDevData<LVPHostRouteTableInfoVT> > > const&) ()
#14 0x0000000000f1a83c in DBBatUpdateDevInfoThread<LVPHostRouteTableInfoVT>::run() ()
#15 0x0000000001777be6 in HThreadReal::run() ()
#16 0x000000000174f333 in startHook ()
#17 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#18 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 85 (Thread 0x7facc8946700 (LWP 74107)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000001796b63 in HOTLDBMgr::run() ()
#3  0x000000000174f333 in startHook ()
#4  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 84 (Thread 0x7fac98cd1700 (LWP 74112)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 83 (Thread 0x7faca10f7700 (LWP 74249)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
---Type <return> to continue, or q <return> to quit---#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 82 (Thread 0x7fac8f8d4700 (LWP 75613)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 81 (Thread 0x7fac928da700 (LWP 75614)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 80 (Thread 0x7fac9e8f2700 (LWP 75627)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 79 (Thread 0x7fac9d8f0700 (LWP 75628)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 78 (Thread 0x7facb1117700 (LWP 75629)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 77 (Thread 0x7facdac3b700 (LWP 75630)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

---Type <return> to continue, or q <return> to quit---Thread 76 (Thread 0x7facb2119700 (LWP 75633)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 75 (Thread 0x7faca6902700 (LWP 75635)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 74 (Thread 0x7fac918d8700 (LWP 75640)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 73 (Thread 0x7fac908d6700 (LWP 75642)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 72 (Thread 0x7fac8c8ce700 (LWP 75646)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 71 (Thread 0x7fac870c3700 (LWP 75654)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 70 (Thread 0x7fac860c1700 (LWP 75655)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 69 (Thread 0x7fac83ca7700 (LWP 75656)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 68 (Thread 0x7fac824a4700 (LWP 75657)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 67 (Thread 0x7fac9b8ec700 (LWP 75785)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
---Type <return> to continue, or q <return> to quit---#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 66 (Thread 0x7fac814a2700 (LWP 75806)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 65 (Thread 0x7fac7d49a700 (LWP 75821)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 64 (Thread 0x7facc5940700 (LWP 75830)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 63 (Thread 0x7facb0916700 (LWP 75840)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
---Type <return> to continue, or q <return> to quit---#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 62 (Thread 0x7fac7748e700 (LWP 75845)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 61 (Thread 0x7facb1918700 (LWP 75855)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 60 (Thread 0x7fac910d7700 (LWP 76168)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
---Type <return> to continue, or q <return> to quit---#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 59 (Thread 0x7fac888c6700 (LWP 76169)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 58 (Thread 0x7fac8a8ca700 (LWP 76171)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 57 (Thread 0x7fac76c8d700 (LWP 76172)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171e492 in HIEUtil::RWRecMutex::_readLock(HIEUtil::LockT<HIEUtil::Mutex>&) const ()
#2  0x000000000171f8db in HIEUtil::RWRecMutex::readLock() const ()
#3  0x0000000000e792fb in DevManager::getDevRecordIDByAgentIDNotUninstall(HString const&, HString&) ()
#4  0x0000000000b9f5aa in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#5  0x0000000001777be6 in HThreadReal::run() ()
#6  0x000000000174f333 in startHook ()
#7  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#8  0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 56 (Thread 0x7fac79c93700 (LWP 76205)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 55 (Thread 0x7fac78490700 (LWP 76206)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 54 (Thread 0x7fac77c8f700 (LWP 76207)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171e492 in HIEUtil::RWRecMutex::_readLock(HIEUtil::LockT<HIEUtil::Mutex>&) const ()
#2  0x000000000171f8db in HIEUtil::RWRecMutex::readLock() const ()
#3  0x0000000000e792fb in DevManager::getDevRecordIDByAgentIDNotUninstall(HString const&, HString&) ()
#4  0x0000000000b9f5aa in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#5  0x0000000001777be6 in HThreadReal::run() ()
#6  0x000000000174f333 in startHook ()
#7  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#8  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 53 (Thread 0x7fac7648c700 (LWP 76208)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 52 (Thread 0x7fac75c8b700 (LWP 76209)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 51 (Thread 0x7fac7548a700 (LWP 76210)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e656b6 in AgentPushCenter::recv_agent_online(HString const&) ()
#6  0x0000000000b9fcb2 in LVBTcpCallback::action(HString const&, int, SIContext const&) ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 50 (Thread 0x7fac9a8ea700 (LWP 76541)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
---Type <return> to continue, or q <return> to quit---#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 49 (Thread 0x7facc9147700 (LWP 76542)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 48 (Thread 0x7fac974ce700 (LWP 76615)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 47 (Thread 0x7fac900d5700 (LWP 76616)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171fa8a in HIEUtil::RWRecMutex::writeLock() const ()
#2  0x0000000000a74079 in DevOrgInfoProcer::changDevGroupInfo(DBBatUpdateDevData<DevGroupChangeCalcResult>) ()
#3  0x0000000000c4c13d in DevCalcGroupThread::wrapper_run() ()
#4  0x0000000000cb737a in USThreadPoolWrapper::run() ()
#5  0x0000000001777be6 in HThreadReal::run() ()
#6  0x000000000174f333 in startHook ()
#7  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#8  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 46 (Thread 0x7fac8f0d3700 (LWP 76622)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
---Type <return> to continue, or q <return> to quit---#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 45 (Thread 0x7facad910700 (LWP 76668)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 44 (Thread 0x7faca8105700 (LWP 76669)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 43 (Thread 0x7faca7904700 (LWP 76670)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 42 (Thread 0x7faca5900700 (LWP 76671)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
---Type <return> to continue, or q <return> to quit---#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 41 (Thread 0x7faca30fb700 (LWP 76672)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 40 (Thread 0x7faca28fa700 (LWP 76673)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 39 (Thread 0x7faca00f5700 (LWP 76676)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 38 (Thread 0x7fac73486700 (LWP 76678)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
---Type <return> to continue, or q <return> to quit---#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 37 (Thread 0x7fac7a494700 (LWP 76680)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 36 (Thread 0x7fac8b8cc700 (LWP 76681)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 35 (Thread 0x7fac9c8ee700 (LWP 76682)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
---Type <return> to continue, or q <return> to quit---#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 34 (Thread 0x7fac9c0ed700 (LWP 76683)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 33 (Thread 0x7fac9b0eb700 (LWP 76684)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 32 (Thread 0x7fac9a0e9700 (LWP 76685)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6
---Type <return> to continue, or q <return> to quit---
Thread 31 (Thread 0x7fac998e8700 (LWP 76686)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 30 (Thread 0x7facb7924700 (LWP 76717)):
#0  0x00007face2f4a995 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x000000000171e492 in HIEUtil::RWRecMutex::_readLock(HIEUtil::LockT<HIEUtil::Mutex>&) const ()
#2  0x000000000171f8db in HIEUtil::RWRecMutex::readLock() const ()
#3  0x0000000000ed742c in SecPolicyOnlyCalcNoPushThread::calc_policy(std::map<HString, DevApplyPolicyRecord, std::less<HString>, std::allocator<std::pair<HString const, DevApplyPolicyRecord> > >&, std::map<HString, DevPolicysExecptionInfo, std::less<HString>, std::allocator<std::pair<HString const, DevPolicysExecptionInfo> > >&) ()
#4  0x0000000000ed9090 in SecPolicyOnlyCalcNoPushThread::calc_all(std::map<HString, HString, std::less<HString>, std::allocator<std::pair<HString const, HString> > >&) ()
#5  0x0000000000ed995a in SecPolicyOnlyCalcNoPushThread::wrapper_run() ()
#6  0x0000000000cb737a in USThreadPoolWrapper::run() ()
#7  0x0000000001777be6 in HThreadReal::run() ()
#8  0x000000000174f333 in startHook ()
#9  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 29 (Thread 0x7fac8d8d0700 (LWP 76719)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 28 (Thread 0x7fac8e0d1700 (LWP 76725)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
---Type <return> to continue, or q <return> to quit---#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 27 (Thread 0x7facb391c700 (LWP 76726)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 26 (Thread 0x7fac930db700 (LWP 76727)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
---Type <return> to continue, or q <return> to quit---#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 25 (Thread 0x7facad10f700 (LWP 76729)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 24 (Thread 0x7facb9928700 (LWP 76730)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
---Type <return> to continue, or q <return> to quit---#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 23 (Thread 0x7facb6d0d700 (LWP 76731)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 22 (Thread 0x7facb5920700 (LWP 76732)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
---Type <return> to continue, or q <return> to quit---#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 21 (Thread 0x7facb411d700 (LWP 76733)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e63816 in AgentPushMsgProvider::dec_agent_pushing_count(HString const&, bool&) ()
#6  0x0000000000e63a64 in AgentPushCenter::del_agent_push_records(HString const&, bool&) ()
#7  0x0000000000e65b00 in AgentPushCenter::inner_recv_agent_notify_ret(HString const&, int, SIContext const&, SIBuffer&) ()
#8  0x0000000000b9f40e in LVBTcpCallback::call_async_ret(SIBuffer&, int, SIContext const&) ()
#9  0x0000000001894153 in SIServerRecvBufferMgrV2::deal_recv_async_callback(SICallNodeAsync&) ()
#10 0x00000000018890d1 in SICallMgrAsync::notify(SICallInternal const&, void*) ()
#11 0x00000000018957bb in SIServerRecvBufferMgrV2::server_recv_call(SIAutoRefParam<SITCPSession> const&, SIClientAuthInfo&, SIRecvOnePacketInfo&, SISendPacket&) ()
#12 0x00000000018975ce in SIServerRecvBufferMgrV2::recv_packet(SIAutoRefParam<SITCPSession> const&, SIRecvOnePacketInfo&, SISendPacket&) ()
#13 0x00000000018ae023 in SIDoPacketThread::run() ()
#14 0x0000000001777be6 in HThreadReal::run() ()
#15 0x000000000174f333 in startHook ()
#16 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 20 (Thread 0x7fac8c0cd700 (LWP 76745)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

---Type <return> to continue, or q <return> to quit---Thread 19 (Thread 0x7fac8b0cb700 (LWP 76746)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 18 (Thread 0x7fac8a0c9700 (LWP 76747)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 17 (Thread 0x7fac898c8700 (LWP 76748)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 16 (Thread 0x7fac890c7700 (LWP 76749)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 15 (Thread 0x7facaf113700 (LWP 76765)):
---Type <return> to continue, or q <return> to quit---#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e65077 in AgentPushMsgProvider::set_new_agent_msg_state(HString const&) ()
#6  0x0000000000b0069d in SecPolicyThread::wrapper_run() ()
#7  0x0000000000cb737a in USThreadPoolWrapper::run() ()
#8  0x0000000001777be6 in HThreadReal::run() ()
#9  0x000000000174f333 in startHook ()
#10 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 14 (Thread 0x7fac7c498700 (LWP 76766)):
#0  0x00007face2f4d51d in __lll_lock_wait () from /lib64/libpthread.so.0
#1  0x00007face2f48e36 in _L_lock_870 () from /lib64/libpthread.so.0
#2  0x00007face2f48d2f in pthread_mutex_lock () from /lib64/libpthread.so.0
#3  0x0000000001722051 in HMutex::Lock() ()
#4  0x00000000017220ff in HAutoMutex::HAutoMutex(HMutex*) ()
#5  0x0000000000e65077 in AgentPushMsgProvider::set_new_agent_msg_state(HString const&) ()
#6  0x0000000000b0069d in SecPolicyThread::wrapper_run() ()
#7  0x0000000000cb737a in USThreadPoolWrapper::run() ()
#8  0x0000000001777be6 in HThreadReal::run() ()
#9  0x000000000174f333 in startHook ()
#10 0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 13 (Thread 0x7fac8e8d2700 (LWP 76778)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 12 (Thread 0x7fac7bc97700 (LWP 76779)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
---Type <return> to continue, or q <return> to quit---#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 11 (Thread 0x7fac920d9700 (LWP 76783)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 10 (Thread 0x7fac834a6700 (LWP 76784)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 9 (Thread 0x7faccb14b700 (LWP 76785)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 8 (Thread 0x7facb291a700 (LWP 76786)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
---Type <return> to continue, or q <return> to quit---#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 7 (Thread 0x7facae912700 (LWP 76787)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 6 (Thread 0x7facae111700 (LWP 76788)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 5 (Thread 0x7faca20f9700 (LWP 76789)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 4 (Thread 0x7faca18f8700 (LWP 76790)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
---Type <return> to continue, or q <return> to quit---#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 3 (Thread 0x7faca08f6700 (LWP 76791)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 2 (Thread 0x7fac7b496700 (LWP 76792)):
#0  0x00007face2f4cd11 in do_futex_wait () from /lib64/libpthread.so.0
#1  0x00007face2f4cdd7 in __new_sem_wait_slow () from /lib64/libpthread.so.0
#2  0x00007face2f4ce75 in sem_timedwait () from /lib64/libpthread.so.0
#3  0x0000000001775177 in HEvent::wait(int) ()
#4  0x0000000001777ba1 in HThreadReal::run() ()
#5  0x000000000174f333 in startHook ()
#6  0x00007face2f46e25 in start_thread () from /lib64/libpthread.so.0
#7  0x00007face2c70bad in clone () from /lib64/libc.so.6

Thread 1 (Thread 0x7face4203780 (LWP 73249)):
#0  0x00007face2c3756d in nanosleep () from /lib64/libc.so.6
#1  0x00007face2c68404 in usleep () from /lib64/libc.so.6
#2  0x0000000000a5795f in USStatus::run() ()
#3  0x0000000000914148 in main ()
(gdb) quit
A debugging session is active.

	Inferior 1 [process 73249] will be detached.

Quit anyway? (y or n) [answered Y; input not from terminal]
Detaching from program: /opt/leagsoft/LeagView/Bin/UniServer, process 73249
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值