重複の可能性:
クラスからのpthread関数
pthread_create
次の行が原因でコンパイルできない次のコードがあります。
void* gtk_functor::_threaded_run(void* win)
{
Gtk::Window* w = static_cast<Gtk::Window*>(win);
Gtk::Main::run(*w);
delete w;
}
void gtk_functor::operator ()(Gtk::Window& win, bool threaded)
{
if (threaded)
{
pthread_t t_num;
pthread_create(&t_num, NULL, (void* (*)(void*))>k_functor::_threaded_run, static_cast<void*>(&win));
}
else
{
Gtk::Main::run(win);
}
}
このgcc行:
g++ -o main 'pkg-config --cflags --libs sqlite3 gtkmm-3.0' -lpthread main.cpp
最後に、この出力でコンパイルします。
code/ui.cpp: In member function 'void ui::gtk_functor::operator()(Gtk::Window&, bool)':
code/ui.cpp:45:65: warning: converting from 'void* (ui::gtk_functor::*)(void*)' to 'void* (*)(void*)' [-Wpmf-conversions]
どうやらコードは正しく機能していません、私はが上げられsementation fault
たときに取得します。if (threaded)
キャストでそれを知っていますが、メンバー関数をpthread_createに渡す正しい形式がわかりません。助言がありますか?