This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcj: accessing environment variables
Anthony Green wrote:
Willful non-conformance is probably a bad idea.
Yes, there may be legal issues we don't want to get into.
Perhaps we should
introduce a new scheme in the gnu.* package.
Perhaps a Java API similar to the scsh (Scheme Shell),
which provides a nice wrapper around Posix APIs.
E.g.
package gnu.posix;
public class Process
{
static int fork ();
static void exec(String[] args);
...;
}
public class File
{
static int open(String name, int mode);
...
}
One might think someone already has done something similar.
--
--Per Bothner
per@bothner.com http://per.bothner.com/