Csound Csound-dev Csound-tekno Search About

[Csnd] f score and flush

Date2011-09-29 04:02
FromCarlos Pita
Subject[Csnd] f score and flush
Hi all,

suppose I send an f score event to a performance thread in order to
create a table. Then I flush the thread queue with FlushMessageQueue.
Should this warrant table creation for the next API call? Say I call
TableLength for the new table, should I expect to get -1 depending on
timing? (In fact, that's what I'm getting so I enter a wait loop until
the table does get created and TableLength != -1).

FlushMessageQueue documentation states:

Waits until all pending messages (pause, send score event, etc.) are
actually received by the performance thread.

I'm not sure if these "actually received" semantics imply that f
instructions are executed till their very end or not. I guess they
don't, just want to confirm it.

Best regards
--
Carlos


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-10-06 15:32
FromSteven Yi
SubjectRe: [Csnd] f score and flush
Hi Carlos,

From what I'm seeing in the source code, FlushMessageQueue will wait
for csPerfThread to process all of the messages it has waiting.
However, csPerfThread's perform loop is coded to do message handling,
then flush notification, then do a call to csoundPerformKsmps.  So it
may be the case that you are calling table length right after the
message queue is done but before csoundPerformKsmps has gotten to the
processing of that event.

One thing you might be able to do is call FlushMessageQueue twice, so
that you wait until the next loop runs through, but FlushMessageQueue
also requires that a message be on the message stack or it will just
return.  So something like:

csPerfThread->FlushMessageQueue();
csPerfThread->InputMessage("");
csPerfThread->FlushMessageQueue();
.. then do table stuff ..

I'm not positive if that will work to send a blank table message, but
worth a shot.

steven

On Thu, Sep 29, 2011 at 4:02 AM, Carlos Pita  wrote:
> Hi all,
>
> suppose I send an f score event to a performance thread in order to
> create a table. Then I flush the thread queue with FlushMessageQueue.
> Should this warrant table creation for the next API call? Say I call
> TableLength for the new table, should I expect to get -1 depending on
> timing? (In fact, that's what I'm getting so I enter a wait loop until
> the table does get created and TableLength != -1).
>
> FlushMessageQueue documentation states:
>
> Waits until all pending messages (pause, send score event, etc.) are
> actually received by the performance thread.
>
> I'm not sure if these "actually received" semantics imply that f
> instructions are executed till their very end or not. I guess they
> don't, just want to confirm it.
>
> Best regards
> --
> Carlos
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"