child process exited abnormally
child process exited abnormally
while executing
"exec -- d.mon start=gism -s >& /dev/null"
("eval" body line 1)
invoked from within
"eval exec -- $cmd $args >& /dev/null"
(procedure "run" line 6)
invoked from within
"run d.mon start=gism -s"
("eval" body line 1)
invoked from within
"eval run $cmd $args"
(procedure "runcmd" line 6)
invoked from within
"runcmd "d.mon start=gism -s""
(procedure "MapCanvas::driversettings" line 55)
invoked from within
"MapCanvas::driversettings $mon"
(procedure "MapCanvas::drawmap" line 39)
invoked from within
"MapCanvas::drawmap $mon"
(procedure "MapCanvas::display_server" line 9)
invoked from within
"MapCanvas::display_server"
("after" script)
After this I can add layers to the tree view but nothing displays.
Any suggestions?
T
--
Trevor Wiens
twiens@interbaun.com
The significant problems that we face cannot be solved at the same
level of thinking we were at when we created them.
(Albert Einstein)
I'm running Lorenzo's binaries of 27 May with no problems in general. Check
in gronconsole to see if there are any errors reported there.
Michael
__________________________________________
Michael Barton, Professor of Anthropology
School of Human Evolution & Social Change
Center for Social Dynamics & Complexity
Arizona State University
From: Trevor Wiens <twiens@interbaun.com>
Date: Mon, 5 Jun 2006 09:14:02 -0600
To: GRASS-DEV <grass-dev@grass.itc.it>
Subject: [GRASS-dev] cvs gis.m error
Upon running gis.m I get the following error:
child process exited abnormally
child process exited abnormally
while executing
"exec -- d.mon start=gism -s >& /dev/null"
("eval" body line 1)
invoked from within
"eval exec -- $cmd $args >& /dev/null"
(procedure "run" line 6)
invoked from within
"run d.mon start=gism -s"
("eval" body line 1)
invoked from within
"eval run $cmd $args"
(procedure "runcmd" line 6)
invoked from within
"runcmd "d.mon start=gism -s""
(procedure "MapCanvas::driversettings" line 55)
invoked from within
"MapCanvas::driversettings $mon"
(procedure "MapCanvas::drawmap" line 39)
invoked from within
"MapCanvas::drawmap $mon"
(procedure "MapCanvas::display_server" line 9)
invoked from within
"MapCanvas::display_server"
("after" script)
After this I can add layers to the tree view but nothing displays.
Any suggestions?
T
--
Trevor Wiens
twiens@interbaun.com
The significant problems that we face cannot be solved at the same
level of thinking we were at when we created them.
(Albert Einstein)
On Mon, 05 Jun 2006 21:26:46 -0700
Michael Barton <michael.barton@asu.edu> wrote:
I'm running Lorenzo's binaries of 27 May with no problems in general. Check
in gronconsole to see if there are any errors reported there.
It simply shows that the command d.mon start=gism -s
is still running. That's it. Stopping the existing display and opening
an new one doesn't resolve the problem. No errors, but also no display
either.
When I modify the run command in runandoutput.tcl to stop sending
everything to /dev/ null, the following happens. The error appears
sooner with the message No such monitor gism on the command
d.mon stop=gism
with the rest being pretty much as before.
Hmm....
BTW, this makes me wonder about the wisdom of sending everything
to /dev/null. A session log file makes more sense to me.
When I revert to an earlier version of the code (one which I was
playing with so I revert to different versions of mapcanvas.tcl and
maptool.tcl the errors are identical so it would seem to have something
to do with d.mon on my system. Has that changed recently?
T
>
> child process exited abnormally
> child process exited abnormally
> while executing
> "exec -- d.mon start=gism -s >& /dev/null"
> ("eval" body line 1)
> invoked from within
> "eval exec -- $cmd $args >& /dev/null"
> (procedure "run" line 6)
> invoked from within
> "run d.mon start=gism -s"
> ("eval" body line 1)
> invoked from within
> "eval run $cmd $args"
> (procedure "runcmd" line 6)
> invoked from within
> "runcmd "d.mon start=gism -s""
> (procedure "MapCanvas::driversettings" line 55)
> invoked from within
> "MapCanvas::driversettings $mon"
> (procedure "MapCanvas::drawmap" line 39)
> invoked from within
> "MapCanvas::drawmap $mon"
> (procedure "MapCanvas::display_server" line 9)
> invoked from within
> "MapCanvas::display_server"
> ("after" script)
>
> After this I can add layers to the tree view but nothing displays.
>
> Any suggestions?
>
> T
> --
> Trevor Wiens
> twiens@interbaun.com
>
> The significant problems that we face cannot be solved at the same
> level of thinking we were at when we created them.
> (Albert Einstein)
>
>
> I'm running Lorenzo's binaries of 27 May with no problems in general. Check
> in gronconsole to see if there are any errors reported there.
It simply shows that the command d.mon start=gism -s
is still running. That's it. Stopping the existing display and opening
an new one doesn't resolve the problem. No errors, but also no display
either.
When I modify the run command in runandoutput.tcl to stop sending
everything to /dev/ null, the following happens. The error appears
sooner with the message No such monitor gism on the command
d.mon stop=gism
with the rest being pretty much as before.
Hmm....
BTW, this makes me wonder about the wisdom of sending everything
to /dev/null. A session log file makes more sense to me.
That's an option, as is redirecting to gis.m's stderr (typically the
terminal) with "2>@stderr", but you have to redirect stderr somewhere.
If a command spawned with exec or open writes anything to an
unredirected stderr, Tcl will generate an error.