Mail Archives: cygwin/1997/06/15/03:48:23
Chris Faylor wrote:
> The following code illustrates a problem with cygwin.dll b18 (the Cygnus
> release version).
>
> #include <stdio.h>
> main(int argc, char **argv)
> {
> putenv("FOO=BAR");
> printf("parent FOO=%s\n", getenv("FOO"));
> if (fork() > 0) {
> wait(0);
> exit(0);
> }
> printf("child FOO=%s\n", getenv("FOO"));
> exit(0);
> }
>
> It erroneously produces the following output:
>
> parent FOO=BAR
> child FOO=(null)
>
It is not neccessary to write such special test program. Just run
"env zzz=asd env" - you'll not see zzz var in env's output.
--
Sergey Okhapkin, http://www.lexa.ru/sos
Moscow, Russia
Looking for a job
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -