- improved process management and bug fixes
files: http://newlisp.org/downloads/development
Lutz
ps: the OSX ppc package was prepared on an Intel MacBook as a cross compile and has not been tested yet on a ppc processor.
development release newLISP v9.2.4
-
- Posts: 394
- Joined: Wed Apr 26, 2006 3:37 am
- Location: Oregon, USA
- Contact:
Hi Lutz,
Thanks for the release...
A remark though... process does not work anymore.. :-)
(Linux slackware 11.0)
> (process "xclock")
4812
> !ps -p4812
PID TTY TIME CMD
>
Where do I look in the C code for the change? Because the p_process function did not change...
PS1: this is strange...
(process "newlisp") does work, but I cant get back to the original ROOT
newlisp when I quit the second one with Ctrl-D. The Root is a ghost now (no defunc btw!)
I think its a TTY/Terminal setting issue...Im lookig at it...
Regards,
Norman.
Thanks for the release...
A remark though... process does not work anymore.. :-)
(Linux slackware 11.0)
> (process "xclock")
4812
> !ps -p4812
PID TTY TIME CMD
>
Where do I look in the C code for the change? Because the p_process function did not change...
PS1: this is strange...
(process "newlisp") does work, but I cant get back to the original ROOT
newlisp when I quit the second one with Ctrl-D. The Root is a ghost now (no defunc btw!)
I think its a TTY/Terminal setting issue...Im lookig at it...
Regards,
Norman.
-- (define? (Cornflakes))
specify the full path name for the app to start with process:
Lutz
Code: Select all
~> newlisp
newLISP v.9.2.4 on BSD, execute 'newlisp -h' for more info.
> (process "/usr/bin/newlisp")
11358
> newLISP v.9.2.4 on BSD, execute 'newlisp -h' for more info.
> !ps -p11358
PID TT STAT TIME COMMAND
11358 p0 S+ 0:00.01 /usr/bin/newlisp
>