0

更新: libc++ を使用してコンパイルするとエラーが発生しますが、コンパイラを libstdc++ (GNU C++ 標準ライブラリ) に変更すると、プログラムはエラーを表示せずに実行されます。

ブースト Web サイトのサンプル コードをいくつか試していますが、このコードの実行中になぜかアクセス エラーが発生します。コードは、デストラクタが呼び出されるまで正常に実行されます。

-lmysqlclient -lm -lz -lboost_date_time -lboost_system -lboost_filesystemリンクされている。

誰かが私が間違っていることを知っていますか?

#include <iostream>
#include <boost/asio.hpp>
#include <boost/thread/thread.hpp>
#include <boost/bind.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>

class printer
{
public:
    printer(boost::asio::io_service& io)
    : strand_(io),
    timer1_(io, boost::posix_time::seconds(1)),
    timer2_(io, boost::posix_time::seconds(1)),
    count_(0)
    {
        timer1_.async_wait(strand_.wrap(boost::bind(&printer::print1, this)));
        timer2_.async_wait(strand_.wrap(boost::bind(&printer::print2, this)));
    }

    ~printer()
    {
        std::cout << "Final count is " << count_ << "\n";
    }

    void print1()
    {
        if (count_ < 10)
        {
            std::cout << "Timer 1: " << count_ << "\n";
            ++count_;

            timer1_.expires_at(timer1_.expires_at() + boost::posix_time::seconds(1));
            timer1_.async_wait(strand_.wrap(boost::bind(&printer::print1, this)));
        }
    }

    void print2()
    {
        if (count_ < 10)
        {
            std::cout << "Timer 2: " << count_ << "\n";
            ++count_;

            timer2_.expires_at(timer2_.expires_at() + boost::posix_time::seconds(1));
            timer2_.async_wait(strand_.wrap(boost::bind(&printer::print2, this)));
        }
    }

private:
    boost::asio::strand strand_;
    boost::asio::deadline_timer timer1_;
    boost::asio::deadline_timer timer2_;
    int count_;
};

int main()
{
    boost::asio::io_service io;
    printer p(io);
    boost::thread t(boost::bind(&boost::asio::io_service::run, &io));
    io.run();
    t.join();

    return 0;
}

スタックトレース

元の画像

これがスタックトレースかどうかはわかりません...

4

1 に答える 1

1

gcc 4.2.1 を使用して Mac で問題なくコードをビルドして実行しました

samm$ g++ --version
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
samm$ ./a.out
Timer 1: 0
Timer 2: 1
Timer 1: 2
Timer 2: 3
Timer 1: 4
Timer 2: 5
Timer 1: 6
Timer 2: 7
Timer 1: 8
Timer 2: 9
Final count is 10
samm$ 

この同じツールチェーンを使用してブースト ライブラリを構築しました

samm$ grep BOOST_LIB_VERSION /opt/local/include/boost/version.hpp 
//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
#define BOOST_LIB_VERSION "1_53"
samm$ 

ブーストとアプリケーションのビルドには同じツールチェーンを使用することをお勧めします。

于 2013-03-20T22:29:25.537 に答える