Bitcointalk · Memory leak

中本聪,2010 年 9 月 19 日

SN-2737 已核对来源,附原文与上下文。

阅读语言
中文译文

在 0 和 2 个连接之间来回跳,恐怕是它在连接自己。你用了 "-connect" 开关吗?

是你自己编译的还是发布版?什么版本?

我不确定 200Kb/sec 怎么来的,因连接尝试之间至少等半秒。它在 0 和 2 个连接之间闪多快?比每秒两次还快?

linux 上的等待函数是:

inline void Sleep(int64 n) { boost::thread::sleep(boost::get_system_time() + boost::posix_time::milliseconds(n)); }

倘若它工作不正常,那它就恐会全速空转循环。

ORIGINAL · 英文原文
Bouncing between 0 and 2 connections could be if it's connecting to itself.  Are you using the "-connect" switch?

Did you compile it or is this a release build, and what version?

I'm not sure how the 200Kb/sec, since it waits at least a half second between connection attempts.  How fast is it flickering between 0 and 2 connections?  Faster than twice a second?

The wait function on linux is:

inline void Sleep(int64 n)
{
    boost::thread::sleep(boost::get_system_time() + boost::posix_time::milliseconds(n));
}

If that doesn't work right, then it would be possible for it to spin through the loop as fast as it can.
来源
Bitcointalk 原始链接 ↗ 记录编号 SN-2737