pthread related issues
jayshankar nair
n_jayshankar@yahoo.com
Mon Dec 22 07:22:00 GMT 2008
Hi,
I have installed windows pthread-win32 pthreadGC2 dll(WINDOWS XP). I see my multithreaded windows program crashing at different locations when i am handling I/O. If i use gdb, the program is able to run. For the below program sometimes crahes at ifstream fin(..)
int ConfigData::fillConfigData(char *p_cFileName)
{
int iStatus = 1;
char pcPort[10];
ifstream fin(p_cFileName, ifstream::in)---> crashes sometimes here.
//fin.getline(m_pcUrl,MAX_URL_LEN);
//cout << "----- fillConfigData URL :" << m_pcUrl<<endl;
fin.getline(pcPort,10);
m_iPort = atoi(pcPort);
cout << "----- fillConfigData port :" << m_iPort << endl;
fin.getline(m_pcMethod,MAX_CALLBACK_METHOD_NAME_LEN);
cout << "----- fillConfigData method: " << m_pcMethod<< endl;
}
I am able to run the same program with linux.
For compilation, i include -lpthreadGC2(libthreadGC2.dll). I have tried compilation both with and without -mthreads options. But the problem persists.
Am i missing something.
Suggestions appreciated.
Thanks,
Jay
More information about the Pthreads-win32
mailing list