Re: Intermittent failures retrieving process exit codes - snapshot test requested

2012-12-29 Thread Christopher Faylor
On Thu, Dec 27, 2012 at 03:49:24PM -0500, Tom Honermann wrote: >When interrupting the test run, I'll often (but not always) get the >following error: > >c:\>test-strace.bat >test... >test... >test... >test... >--- Process 8092, exception 40010005 at 75E26D67 That is coming from strace and it's:

Work From Home And Get Paid

2012-12-29 Thread Whitstable Oyster Company
Larry (Director, Human Resource Department). Whitstable Oyster Company Ground Floor Euston Road, London NW13UH. Web site: www.oysterfishery.co.uk For Urgent Attention Contact Our Sales Agent Directly: ludad...@gmail.com Yours Sincerely. Management -- Problem reports: http://cygwin.com/proble

Re: format specifier for long long incompatible to glibc

2012-12-29 Thread Christian Franke
Arno Wagner wrote: Example: #include void main() { long long i; i = 100L; printf("sizeof long long: %d\n", sizeof(i)); printf("L specifier: %12Ld\n", i); printf("q specifier: %12qd\n", i); printf("ll specifier: %12lld\n", i); } gives: sizeof long long: 8 L spec