help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: none


From: Geraint
Subject: Re: none
Date: 08 Apr 2003 20:04:02 +0100
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2

Jill,

just a shot in the dark...

the worker threads don't return any value - this may be the source of the error 
messages. You could perhaps try returning a dummy value from the worker thread 
(maybe the taskid would be useful for debugging)

        if (taskid == MASTER) {
                stuff;
                return octave_value(m);
        } else if (taskid > MASTER) {
                stuff;
                return static_cast<double>(taskid);
        }

Geraint.



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]