Re: Missing doPrivileged() in VMProcess?

2006-01-29 Thread Mark Wielaard
On Fri, 2006-01-27 at 13:50 +, Gary Benson wrote: Andrew Haley wrote: Gary Benson writes: Hi all, Each time you execute a file with Runtime.exec() a VMProcess is created. The first time one of these is created it creates a thread and calls its setDaemon() method which

Missing doPrivileged() in VMProcess?

2006-01-27 Thread Gary Benson
Hi all, Each time you execute a file with Runtime.exec() a java.lang.VMProcess is created. The first time one of these is created it creates a thread and calls its setDaemon() method which (eventually) checks RuntimePermission(modifyThread). I guess there should be a doPrivileged() in here