|
Threads-Devel : |
From: Leonel Salazar (leonel.lordford_at_[hidden])
Date: 2007-10-12 10:07:08
Hello list:
I'm new new using boost library, I think it's great, really great... now the
problem, I need to create a program that uses a class for executing 3
threads, like this:
class CLASSNAME
{
// thread functions
void read();
void write();
void save();
// main function
void run( int param );
// attributes
};
I just read the boost-doc once and once again but can't understand really
the theory..., I'm using Debian GNU/Linux and compiling using Code::Blocks,
when I write, for example:
void CLASSNAME::run( int param )
{
// stuff here
thread_group th_group = new thread_group;
th_group->create_thread( &CLASSNAME::read ); // error here bad function
prototype or s.th.
}
I get an error messaje, I can't tell now because I'm not in my own
computer... any advice ?
Leonel.