Re: cygexec strangeness

2007-01-20 Thread Corinna Vinschen
On Jan 20 05:21, Christopher Layne wrote: > $ mount -f -b -s -X 'c:\cygwin' / > $ strace ./o o.c > >55 57473 [main] o 2656 fhandler_base::open: (c:\cygwin\var\tmp\o.c, > 0x10) >87 57560 [main] o 2656 fhandler_base::set_flags: flags 0x10, > supplied_bin 0x1 >45 57605

Re: cygexec strangeness

2007-01-20 Thread Christopher Layne
$ mount -f -b -s -X 'c:\cygwin' / $ strace ./o o.c 55 57473 [main] o 2656 fhandler_base::open: (c:\cygwin\var\tmp\o.c, 0x10) 87 57560 [main] o 2656 fhandler_base::set_flags: flags 0x10, supplied_bin 0x1 45 57605 [main] o 2656 fhandler_base::set_flags: filemode set to

Re: cygexec strangeness

2007-01-20 Thread Corinna Vinschen
On Jan 20 03:27, Christopher Layne wrote: > Kind of strange. > Am I missing something on how cygexec is supposed to be used? That's with a snapshot? If so, try the latest one. WJFFM. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader

cygexec strangeness

2007-01-20 Thread Christopher Layne
Kind of strange. Am I missing something on how cygexec is supposed to be used? $ cat o.c #include #include #include int main(int argc, char **argv) { int r; if ((r = open(argv[1], O_RDONLY)) < 0) perror("open"); return 0; } $ gcc -g3 -ansi -pedantic -