Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: [cdt-dev] cygpath not behaving as expected causes Eclipse to hang

Hi Michael,

I managed to hang eclipse even during the startup phase by substituting
the original cygpath.exe with this streamlined implementation :-)

===========================================
#include <stdio.h>

int main(int argc, char **argv) {
	
	char* input[2000];
	
	printf("Message about bad dll versions\n");
	while (1)
	{
		gets(input);
	}
	
	return 0 ;
	
}
===========================================

So any situation which makes cygpath just wait for input without writing
an entire line of output will hang eclipse. Please submit a bug report
and we can discuss remedies.

Thank you,


Norbert Ploett



Back to the top