0

is_master_def:

volatile bool is_master_;

is_master_值被另一个线程设置为 true ,但似乎is_master_值不会刷新(它不会导致致命错误发生......)。如果我添加 cout << "foo" <

void MasterSlaveSynchronize::validateSingleMaster(){
    if(is_master_){
        cout << "FATAL ERROR HAS OCCURRED BOTH MASTER";
        if(!is_leader_master_){
            cout << "CHOSE AS VICTIM IN MASTER-MATSER. SET THIS HOST AS SLAVE";
            is_master_ = false;
        }
    }
}

调用方代码:

while(1){
        int n = recvfrom(sockId, buf, HEARBEAT_SIZE, 0, (struct sockaddr *) &from,
                &length);
        if (n < 0) {
            REGISTER_ERROR("Failed to recieved hearbeat");
        } else {
            gettimeofday(&instance_->last_hearbeat_got_, NULL);
            instance_->validateSingleMaster();
        }
}
4

1 回答 1

3

你想让我发表我的评论作为答案:

也许确实如此,但是因为您不使用换行符,所以您的输出流不会刷新。

这种行为在这里得到了很好的解释:

为什么 printf 在调用后不刷新,除非换行符在格式字符串中?

于 2012-10-07T11:04:32.213 回答