Csound Csound-dev Csound-tekno Search About

[Cs-dev] latest devel for windows..

Date2014-02-01 15:58
FromRory Walsh
Subject[Cs-dev] latest devel for windows..
Cabbage gives a sigrev when using the latest version of Csound,
downloaded an build today. Here's the backtrace:

0  0x6c509574  gen10
1  0x6c5079e2  hfgens
2  0x6c522044  process_score_event
3  0x6c522957  sensevents
4  0x6c664420  csoundPerformKsmps

Any ideas?

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 16:42
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
No, but do you have any code lines? Or even better, can you give us a CSD that causes it?
On 1 Feb 2014, at 15:58, Rory Walsh  wrote:

> Cabbage gives a sigrev when using the latest version of Csound,
> downloaded an build today. Here's the backtrace:
> 
> 0  0x6c509574  gen10
> 1  0x6c5079e2  hfgens
> 2  0x6c522044  process_score_event
> 3  0x6c522957  sensevents
> 4  0x6c664420  csoundPerformKsmps
> 
> Any ideas?
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 19:03
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
GDB ain't giving me any more info than that, but it seems that there
is something strange afoot at my end. I usually copy the Csound dlls
into a Cabbage folder and run it from there, but this is causing that
reported error. If however I grab the Cabbage.exe and put it into the
Csound build dir it all works fine. Must be some conflicting libs
around the place. I'll report back in a bit.

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 19:24
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Ok, this seems like a recurrence of the problem from before regarding
tables, if I use a -1 on the oscili code everything is fine. If I
never rewind the score everything is also fine, but as soon as I call
performKsmps() after rewinding the score I get the error printed
below. I can't really grab any more info from gdb than what's below,
it's not giving out much info at all. Every time I change gen routine
it reports a problem in that gen routine. The output below is from an
instrument using gen07.

0  0x6c5087ca  gen07
1  0x6c5079e2  hfgens
2  0x6c522044  process_score_event
3  0x6c522957  sensevents
4  0x6c664420  csoundPerformKsmps
5  0x006de666  Csound::PerformKsmps
C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
 351

This is the instrument I'm using:


form size(400, 300), caption("Untitled"), pluginID("plu1")



-n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5


sr = 44100
ksmps = 64
nchnls = 2
0dbfs=1

instr 1
endin



f1 0 1024 10 1
f0 3600



On 1 February 2014 19:03, Rory Walsh  wrote:
> GDB ain't giving me any more info than that, but it seems that there
> is something strange afoot at my end. I usually copy the Csound dlls
> into a Cabbage folder and run it from there, but this is causing that
> reported error. If however I grab the Cabbage.exe and put it into the
> Csound build dir it all works fine. Must be some conflicting libs
> around the place. I'll report back in a bit.

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 19:57
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Would it be possible that you have old code lying around (an old dll or something?).
I can rewind the score no problems with the latest code.

You can try running the code below in the command-line and adding a

instr 2
rewindscore
endin

to check. 

Victor
On 1 Feb 2014, at 19:24, Rory Walsh  wrote:

> Ok, this seems like a recurrence of the problem from before regarding
> tables, if I use a -1 on the oscili code everything is fine. If I
> never rewind the score everything is also fine, but as soon as I call
> performKsmps() after rewinding the score I get the error printed
> below. I can't really grab any more info from gdb than what's below,
> it's not giving out much info at all. Every time I change gen routine
> it reports a problem in that gen routine. The output below is from an
> instrument using gen07.
> 
> 0  0x6c5087ca  gen07
> 1  0x6c5079e2  hfgens
> 2  0x6c522044  process_score_event
> 3  0x6c522957  sensevents
> 4  0x6c664420  csoundPerformKsmps
> 5  0x006de666  Csound::PerformKsmps
> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
> 351
> 
> This is the instrument I'm using:
> 
> 
> form size(400, 300), caption("Untitled"), pluginID("plu1")
> 
> 
> 
> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
> 
> 
> sr = 44100
> ksmps = 64
> nchnls = 2
> 0dbfs=1
> 
> instr 1
> endin
> 
> 
> 
> f1 0 1024 10 1
> f0 3600
> 
> 
> 
> On 1 February 2014 19:03, Rory Walsh  wrote:
>> GDB ain't giving me any more info than that, but it seems that there
>> is something strange afoot at my end. I usually copy the Csound dlls
>> into a Cabbage folder and run it from there, but this is causing that
>> reported error. If however I grab the Cabbage.exe and put it into the
>> Csound build dir it all works fine. Must be some conflicting libs
>> around the place. I'll report back in a bit.
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 20:19
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Running the rewindscore instrument from the command line causes a
segfault, and gdb gives me no more info than before. I built fresh
today and running git pull gives this:

C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
origin develop
>From git://git.code.sf.net/p/csound/csound6-git
 * branch            develop    -> FETCH_HEAD
Already up-to-date.





On 1 February 2014 19:57, Victor Lazzarini  wrote:
> Would it be possible that you have old code lying around (an old dll or something?).
> I can rewind the score no problems with the latest code.
>
> You can try running the code below in the command-line and adding a
>
> instr 2
> rewindscore
> endin
>
> to check.
>
> Victor
> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>
>> Ok, this seems like a recurrence of the problem from before regarding
>> tables, if I use a -1 on the oscili code everything is fine. If I
>> never rewind the score everything is also fine, but as soon as I call
>> performKsmps() after rewinding the score I get the error printed
>> below. I can't really grab any more info from gdb than what's below,
>> it's not giving out much info at all. Every time I change gen routine
>> it reports a problem in that gen routine. The output below is from an
>> instrument using gen07.
>>
>> 0  0x6c5087ca  gen07
>> 1  0x6c5079e2  hfgens
>> 2  0x6c522044  process_score_event
>> 3  0x6c522957  sensevents
>> 4  0x6c664420  csoundPerformKsmps
>> 5  0x006de666  Csound::PerformKsmps
>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> 351
>>
>> This is the instrument I'm using:
>>
>> 
>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>> 
>> 
>> 
>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>> 
>> 
>> sr = 44100
>> ksmps = 64
>> nchnls = 2
>> 0dbfs=1
>>
>> instr 1
>> endin
>>
>> 
>> 
>> f1 0 1024 10 1
>> f0 3600
>> 
>> 
>>
>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>> GDB ain't giving me any more info than that, but it seems that there
>>> is something strange afoot at my end. I usually copy the Csound dlls
>>> into a Cabbage folder and run it from there, but this is causing that
>>> reported error. If however I grab the Cabbage.exe and put it into the
>>> Csound build dir it all works fine. Must be some conflicting libs
>>> around the place. I'll report back in a bit.
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 20:20
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
The instrument I use to create the segfault:



-odac0


sr = 44100
ksmps = 64
nchnls = 2
0dbfs=1

instr 1
endin

instr 2
rewindscore
endin



f1 0 1024 10 1
i1 0 10
i2 2 1



On 1 February 2014 20:19, Rory Walsh  wrote:
> Running the rewindscore instrument from the command line causes a
> segfault, and gdb gives me no more info than before. I built fresh
> today and running git pull gives this:
>
> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
> origin develop
> From git://git.code.sf.net/p/csound/csound6-git
>  * branch            develop    -> FETCH_HEAD
> Already up-to-date.
>
>
>
>
>
> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>> Would it be possible that you have old code lying around (an old dll or something?).
>> I can rewind the score no problems with the latest code.
>>
>> You can try running the code below in the command-line and adding a
>>
>> instr 2
>> rewindscore
>> endin
>>
>> to check.
>>
>> Victor
>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>
>>> Ok, this seems like a recurrence of the problem from before regarding
>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>> never rewind the score everything is also fine, but as soon as I call
>>> performKsmps() after rewinding the score I get the error printed
>>> below. I can't really grab any more info from gdb than what's below,
>>> it's not giving out much info at all. Every time I change gen routine
>>> it reports a problem in that gen routine. The output below is from an
>>> instrument using gen07.
>>>
>>> 0  0x6c5087ca  gen07
>>> 1  0x6c5079e2  hfgens
>>> 2  0x6c522044  process_score_event
>>> 3  0x6c522957  sensevents
>>> 4  0x6c664420  csoundPerformKsmps
>>> 5  0x006de666  Csound::PerformKsmps
>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>> 351
>>>
>>> This is the instrument I'm using:
>>>
>>> 
>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>> 
>>> 
>>> 
>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>> 
>>> 
>>> sr = 44100
>>> ksmps = 64
>>> nchnls = 2
>>> 0dbfs=1
>>>
>>> instr 1
>>> endin
>>>
>>> 
>>> 
>>> f1 0 1024 10 1
>>> f0 3600
>>> 
>>> 
>>>
>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>> GDB ain't giving me any more info than that, but it seems that there
>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>> into a Cabbage folder and run it from there, but this is causing that
>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>> around the place. I'll report back in a bit.
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 20:36
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
It's frustrating that I can't get more info from gdb, I have unchecked
the release build in my cmake options, is that all I have to do to
specify a debug target? I see no option for debug?

On 1 February 2014 20:20, Rory Walsh  wrote:
> The instrument I use to create the segfault:
>
> 
> 
> -odac0
> 
> 
> sr = 44100
> ksmps = 64
> nchnls = 2
> 0dbfs=1
>
> instr 1
> endin
>
> instr 2
> rewindscore
> endin
>
> 
> 
> f1 0 1024 10 1
> i1 0 10
> i2 2 1
> 
> 
>
> On 1 February 2014 20:19, Rory Walsh  wrote:
>> Running the rewindscore instrument from the command line causes a
>> segfault, and gdb gives me no more info than before. I built fresh
>> today and running git pull gives this:
>>
>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>> origin develop
>> From git://git.code.sf.net/p/csound/csound6-git
>>  * branch            develop    -> FETCH_HEAD
>> Already up-to-date.
>>
>>
>>
>>
>>
>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>> Would it be possible that you have old code lying around (an old dll or something?).
>>> I can rewind the score no problems with the latest code.
>>>
>>> You can try running the code below in the command-line and adding a
>>>
>>> instr 2
>>> rewindscore
>>> endin
>>>
>>> to check.
>>>
>>> Victor
>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>
>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>> never rewind the score everything is also fine, but as soon as I call
>>>> performKsmps() after rewinding the score I get the error printed
>>>> below. I can't really grab any more info from gdb than what's below,
>>>> it's not giving out much info at all. Every time I change gen routine
>>>> it reports a problem in that gen routine. The output below is from an
>>>> instrument using gen07.
>>>>
>>>> 0  0x6c5087ca  gen07
>>>> 1  0x6c5079e2  hfgens
>>>> 2  0x6c522044  process_score_event
>>>> 3  0x6c522957  sensevents
>>>> 4  0x6c664420  csoundPerformKsmps
>>>> 5  0x006de666  Csound::PerformKsmps
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>> 351
>>>>
>>>> This is the instrument I'm using:
>>>>
>>>> 
>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>> 
>>>> 
>>>> 
>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>> 
>>>> 
>>>> sr = 44100
>>>> ksmps = 64
>>>> nchnls = 2
>>>> 0dbfs=1
>>>>
>>>> instr 1
>>>> endin
>>>>
>>>> 
>>>> 
>>>> f1 0 1024 10 1
>>>> f0 3600
>>>> 
>>>> 
>>>>
>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>> around the place. I'll report back in a bit.
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 20:54
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
it does not segfault here. You sure this is the latest code?
On 1 Feb 2014, at 20:36, Rory Walsh  wrote:

> It's frustrating that I can't get more info from gdb, I have unchecked
> the release build in my cmake options, is that all I have to do to
> specify a debug target? I see no option for debug?
> 
> On 1 February 2014 20:20, Rory Walsh  wrote:
>> The instrument I use to create the segfault:
>> 
>> 
>> 
>> -odac0
>> 
>> 
>> sr = 44100
>> ksmps = 64
>> nchnls = 2
>> 0dbfs=1
>> 
>> instr 1
>> endin
>> 
>> instr 2
>> rewindscore
>> endin
>> 
>> 
>> 
>> f1 0 1024 10 1
>> i1 0 10
>> i2 2 1
>> 
>> 
>> 
>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>> Running the rewindscore instrument from the command line causes a
>>> segfault, and gdb gives me no more info than before. I built fresh
>>> today and running git pull gives this:
>>> 
>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>> origin develop
>>> From git://git.code.sf.net/p/csound/csound6-git
>>> * branch            develop    -> FETCH_HEAD
>>> Already up-to-date.
>>> 
>>> 
>>> 
>>> 
>>> 
>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>> I can rewind the score no problems with the latest code.
>>>> 
>>>> You can try running the code below in the command-line and adding a
>>>> 
>>>> instr 2
>>>> rewindscore
>>>> endin
>>>> 
>>>> to check.
>>>> 
>>>> Victor
>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>> 
>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>> performKsmps() after rewinding the score I get the error printed
>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>> it reports a problem in that gen routine. The output below is from an
>>>>> instrument using gen07.
>>>>> 
>>>>> 0  0x6c5087ca  gen07
>>>>> 1  0x6c5079e2  hfgens
>>>>> 2  0x6c522044  process_score_event
>>>>> 3  0x6c522957  sensevents
>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>> 351
>>>>> 
>>>>> This is the instrument I'm using:
>>>>> 
>>>>> 
>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>> 
>>>>> 
>>>>> 
>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>> 
>>>>> 
>>>>> sr = 44100
>>>>> ksmps = 64
>>>>> nchnls = 2
>>>>> 0dbfs=1
>>>>> 
>>>>> instr 1
>>>>> endin
>>>>> 
>>>>> 
>>>>> 
>>>>> f1 0 1024 10 1
>>>>> f0 3600
>>>>> 
>>>>> 
>>>>> 
>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>> around the place. I'll report back in a bit.
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 20:58
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Git tells me I am? Or am I missing something, here's the git output
from a pull request:

>git pull origin develop
>From git://git.code.sf.net/p/csound/csound6-git
 * branch            develop    -> FETCH_HEAD
Already up-to-date.

And I did a fresh build a few moments ago in an attempt to get more
info from gdb. Could it be a windows specific thing? I've noticed no
problems on Linux although I'm not quite certain when I last updated
there.


On 1 February 2014 20:54, Victor Lazzarini  wrote:
> it does not segfault here. You sure this is the latest code?
> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>
>> It's frustrating that I can't get more info from gdb, I have unchecked
>> the release build in my cmake options, is that all I have to do to
>> specify a debug target? I see no option for debug?
>>
>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>> The instrument I use to create the segfault:
>>>
>>> 
>>> 
>>> -odac0
>>> 
>>> 
>>> sr = 44100
>>> ksmps = 64
>>> nchnls = 2
>>> 0dbfs=1
>>>
>>> instr 1
>>> endin
>>>
>>> instr 2
>>> rewindscore
>>> endin
>>>
>>> 
>>> 
>>> f1 0 1024 10 1
>>> i1 0 10
>>> i2 2 1
>>> 
>>> 
>>>
>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>> Running the rewindscore instrument from the command line causes a
>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>> today and running git pull gives this:
>>>>
>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>> origin develop
>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>> * branch            develop    -> FETCH_HEAD
>>>> Already up-to-date.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>> I can rewind the score no problems with the latest code.
>>>>>
>>>>> You can try running the code below in the command-line and adding a
>>>>>
>>>>> instr 2
>>>>> rewindscore
>>>>> endin
>>>>>
>>>>> to check.
>>>>>
>>>>> Victor
>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>
>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>> instrument using gen07.
>>>>>>
>>>>>> 0  0x6c5087ca  gen07
>>>>>> 1  0x6c5079e2  hfgens
>>>>>> 2  0x6c522044  process_score_event
>>>>>> 3  0x6c522957  sensevents
>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>> 351
>>>>>>
>>>>>> This is the instrument I'm using:
>>>>>>
>>>>>> 
>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>> 
>>>>>> 
>>>>>> sr = 44100
>>>>>> ksmps = 64
>>>>>> nchnls = 2
>>>>>> 0dbfs=1
>>>>>>
>>>>>> instr 1
>>>>>> endin
>>>>>>
>>>>>> 
>>>>>> 
>>>>>> f1 0 1024 10 1
>>>>>> f0 3600
>>>>>> 
>>>>>> 
>>>>>>
>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>> around the place. I'll report back in a bit.
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:01
Fromjoachim heintz
SubjectRe: [Cs-dev] latest devel for windows..
for me, the example csd rory has given does not come to an end. i have 
to stop manually. but i get the same behaviour with csound 5.19.

	joachim


Am 01.02.2014 21:54, schrieb Victor Lazzarini:
> it does not segfault here. You sure this is the latest code?
> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>
>> It's frustrating that I can't get more info from gdb, I have unchecked
>> the release build in my cmake options, is that all I have to do to
>> specify a debug target? I see no option for debug?
>>
>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>> The instrument I use to create the segfault:
>>>
>>> 
>>> 
>>> -odac0
>>> 
>>> 
>>> sr = 44100
>>> ksmps = 64
>>> nchnls = 2
>>> 0dbfs=1
>>>
>>> instr 1
>>> endin
>>>
>>> instr 2
>>> rewindscore
>>> endin
>>>
>>> 
>>> 
>>> f1 0 1024 10 1
>>> i1 0 10
>>> i2 2 1
>>> 
>>> 
>>>
>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>> Running the rewindscore instrument from the command line causes a
>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>> today and running git pull gives this:
>>>>
>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>> origin develop
>>>>  From git://git.code.sf.net/p/csound/csound6-git
>>>> * branch            develop    -> FETCH_HEAD
>>>> Already up-to-date.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>> I can rewind the score no problems with the latest code.
>>>>>
>>>>> You can try running the code below in the command-line and adding a
>>>>>
>>>>> instr 2
>>>>> rewindscore
>>>>> endin
>>>>>
>>>>> to check.
>>>>>
>>>>> Victor
>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>
>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>> instrument using gen07.
>>>>>>
>>>>>> 0  0x6c5087ca  gen07
>>>>>> 1  0x6c5079e2  hfgens
>>>>>> 2  0x6c522044  process_score_event
>>>>>> 3  0x6c522957  sensevents
>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>> 351
>>>>>>
>>>>>> This is the instrument I'm using:
>>>>>>
>>>>>> 
>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>> 
>>>>>> 
>>>>>> sr = 44100
>>>>>> ksmps = 64
>>>>>> nchnls = 2
>>>>>> 0dbfs=1
>>>>>>
>>>>>> instr 1
>>>>>> endin
>>>>>>
>>>>>> 
>>>>>> 
>>>>>> f1 0 1024 10 1
>>>>>> f0 3600
>>>>>> 
>>>>>> 
>>>>>>
>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>> around the place. I'll report back in a bit.
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:07
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
It probably shouldn't ever finish because instrument 2 keeps rewinding
the score? Are you running the latest git tip on windows?

On 1 February 2014 21:01, joachim heintz  wrote:
> for me, the example csd rory has given does not come to an end. i have
> to stop manually. but i get the same behaviour with csound 5.19.
>
>         joachim
>
>
> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>> it does not segfault here. You sure this is the latest code?
>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>
>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>> the release build in my cmake options, is that all I have to do to
>>> specify a debug target? I see no option for debug?
>>>
>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>> The instrument I use to create the segfault:
>>>>
>>>> 
>>>> 
>>>> -odac0
>>>> 
>>>> 
>>>> sr = 44100
>>>> ksmps = 64
>>>> nchnls = 2
>>>> 0dbfs=1
>>>>
>>>> instr 1
>>>> endin
>>>>
>>>> instr 2
>>>> rewindscore
>>>> endin
>>>>
>>>> 
>>>> 
>>>> f1 0 1024 10 1
>>>> i1 0 10
>>>> i2 2 1
>>>> 
>>>> 
>>>>
>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>> Running the rewindscore instrument from the command line causes a
>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>> today and running git pull gives this:
>>>>>
>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>> origin develop
>>>>>  From git://git.code.sf.net/p/csound/csound6-git
>>>>> * branch            develop    -> FETCH_HEAD
>>>>> Already up-to-date.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>> I can rewind the score no problems with the latest code.
>>>>>>
>>>>>> You can try running the code below in the command-line and adding a
>>>>>>
>>>>>> instr 2
>>>>>> rewindscore
>>>>>> endin
>>>>>>
>>>>>> to check.
>>>>>>
>>>>>> Victor
>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>
>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>> instrument using gen07.
>>>>>>>
>>>>>>> 0  0x6c5087ca  gen07
>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>> 2  0x6c522044  process_score_event
>>>>>>> 3  0x6c522957  sensevents
>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>> 351
>>>>>>>
>>>>>>> This is the instrument I'm using:
>>>>>>>
>>>>>>> 
>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>> 
>>>>>>> 
>>>>>>> sr = 44100
>>>>>>> ksmps = 64
>>>>>>> nchnls = 2
>>>>>>> 0dbfs=1
>>>>>>>
>>>>>>> instr 1
>>>>>>> endin
>>>>>>>
>>>>>>> 
>>>>>>> 
>>>>>>> f1 0 1024 10 1
>>>>>>> f0 3600
>>>>>>> 
>>>>>>> 
>>>>>>>
>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:10
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Hold on everyone!! I just got gitted....it says I'm up to date with
the devel branch but neglected to say that I was still in the master
branch locally. Sincerest apologies for the noise.

On 1 February 2014 21:07, Rory Walsh  wrote:
> It probably shouldn't ever finish because instrument 2 keeps rewinding
> the score? Are you running the latest git tip on windows?
>
> On 1 February 2014 21:01, joachim heintz  wrote:
>> for me, the example csd rory has given does not come to an end. i have
>> to stop manually. but i get the same behaviour with csound 5.19.
>>
>>         joachim
>>
>>
>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>> it does not segfault here. You sure this is the latest code?
>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>
>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>> the release build in my cmake options, is that all I have to do to
>>>> specify a debug target? I see no option for debug?
>>>>
>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>> The instrument I use to create the segfault:
>>>>>
>>>>> 
>>>>> 
>>>>> -odac0
>>>>> 
>>>>> 
>>>>> sr = 44100
>>>>> ksmps = 64
>>>>> nchnls = 2
>>>>> 0dbfs=1
>>>>>
>>>>> instr 1
>>>>> endin
>>>>>
>>>>> instr 2
>>>>> rewindscore
>>>>> endin
>>>>>
>>>>> 
>>>>> 
>>>>> f1 0 1024 10 1
>>>>> i1 0 10
>>>>> i2 2 1
>>>>> 
>>>>> 
>>>>>
>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>> today and running git pull gives this:
>>>>>>
>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>> origin develop
>>>>>>  From git://git.code.sf.net/p/csound/csound6-git
>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>> Already up-to-date.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>
>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>
>>>>>>> instr 2
>>>>>>> rewindscore
>>>>>>> endin
>>>>>>>
>>>>>>> to check.
>>>>>>>
>>>>>>> Victor
>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>
>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>> instrument using gen07.
>>>>>>>>
>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>> 351
>>>>>>>>
>>>>>>>> This is the instrument I'm using:
>>>>>>>>
>>>>>>>> 
>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>> 
>>>>>>>> 
>>>>>>>> sr = 44100
>>>>>>>> ksmps = 64
>>>>>>>> nchnls = 2
>>>>>>>> 0dbfs=1
>>>>>>>>
>>>>>>>> instr 1
>>>>>>>> endin
>>>>>>>>
>>>>>>>> 
>>>>>>>> 
>>>>>>>> f1 0 1024 10 1
>>>>>>>> f0 3600
>>>>>>>> 
>>>>>>>> 
>>>>>>>>
>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:25
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
yes, it will never stop. 
On 1 Feb 2014, at 21:01, joachim heintz  wrote:

> for me, the example csd rory has given does not come to an end. i have 
> to stop manually. but i get the same behaviour with csound 5.19.
> 
> 	joachim
> 
> 
> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>> it does not segfault here. You sure this is the latest code?
>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>> 
>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>> the release build in my cmake options, is that all I have to do to
>>> specify a debug target? I see no option for debug?
>>> 
>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>> The instrument I use to create the segfault:
>>>> 
>>>> 
>>>> 
>>>> -odac0
>>>> 
>>>> 
>>>> sr = 44100
>>>> ksmps = 64
>>>> nchnls = 2
>>>> 0dbfs=1
>>>> 
>>>> instr 1
>>>> endin
>>>> 
>>>> instr 2
>>>> rewindscore
>>>> endin
>>>> 
>>>> 
>>>> 
>>>> f1 0 1024 10 1
>>>> i1 0 10
>>>> i2 2 1
>>>> 
>>>> 
>>>> 
>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>> Running the rewindscore instrument from the command line causes a
>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>> today and running git pull gives this:
>>>>> 
>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>> origin develop
>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>> * branch            develop    -> FETCH_HEAD
>>>>> Already up-to-date.
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>> I can rewind the score no problems with the latest code.
>>>>>> 
>>>>>> You can try running the code below in the command-line and adding a
>>>>>> 
>>>>>> instr 2
>>>>>> rewindscore
>>>>>> endin
>>>>>> 
>>>>>> to check.
>>>>>> 
>>>>>> Victor
>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>> 
>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>> instrument using gen07.
>>>>>>> 
>>>>>>> 0  0x6c5087ca  gen07
>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>> 2  0x6c522044  process_score_event
>>>>>>> 3  0x6c522957  sensevents
>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>> 351
>>>>>>> 
>>>>>>> This is the instrument I'm using:
>>>>>>> 
>>>>>>> 
>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>> 
>>>>>>> 
>>>>>>> sr = 44100
>>>>>>> ksmps = 64
>>>>>>> nchnls = 2
>>>>>>> 0dbfs=1
>>>>>>> 
>>>>>>> instr 1
>>>>>>> endin
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> f1 0 1024 10 1
>>>>>>> f0 3600
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>> around the place. I'll report back in a bit.
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:26
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
such a git.
On 1 Feb 2014, at 21:10, Rory Walsh  wrote:

> Hold on everyone!! I just got gitted....it says I'm up to date with
> the devel branch but neglected to say that I was still in the master
> branch locally. Sincerest apologies for the noise.
> 
> On 1 February 2014 21:07, Rory Walsh  wrote:
>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>> the score? Are you running the latest git tip on windows?
>> 
>> On 1 February 2014 21:01, joachim heintz  wrote:
>>> for me, the example csd rory has given does not come to an end. i have
>>> to stop manually. but i get the same behaviour with csound 5.19.
>>> 
>>>        joachim
>>> 
>>> 
>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>> it does not segfault here. You sure this is the latest code?
>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>> 
>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>> the release build in my cmake options, is that all I have to do to
>>>>> specify a debug target? I see no option for debug?
>>>>> 
>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>> The instrument I use to create the segfault:
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> -odac0
>>>>>> 
>>>>>> 
>>>>>> sr = 44100
>>>>>> ksmps = 64
>>>>>> nchnls = 2
>>>>>> 0dbfs=1
>>>>>> 
>>>>>> instr 1
>>>>>> endin
>>>>>> 
>>>>>> instr 2
>>>>>> rewindscore
>>>>>> endin
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> f1 0 1024 10 1
>>>>>> i1 0 10
>>>>>> i2 2 1
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>> today and running git pull gives this:
>>>>>>> 
>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>> origin develop
>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>> Already up-to-date.
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>> 
>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>> 
>>>>>>>> instr 2
>>>>>>>> rewindscore
>>>>>>>> endin
>>>>>>>> 
>>>>>>>> to check.
>>>>>>>> 
>>>>>>>> Victor
>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>> 
>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>> instrument using gen07.
>>>>>>>>> 
>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>> 351
>>>>>>>>> 
>>>>>>>>> This is the instrument I'm using:
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> sr = 44100
>>>>>>>>> ksmps = 64
>>>>>>>>> nchnls = 2
>>>>>>>>> 0dbfs=1
>>>>>>>>> 
>>>>>>>>> instr 1
>>>>>>>>> endin
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> f1 0 1024 10 1
>>>>>>>>> f0 3600
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:31
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
It seems I'm still a git because after following these steps from my
csound6.git dir:

git checkout develop
git pull origin develop
cd build
make clean
make
csound test.csd

The problem remains.

new alloc for instr 1:
B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
new alloc for instr 2:
end of section 1         sect peak amps:  0.00000  0.00000
SECTION 1:
WARNING: Cannot rewind MIDI score

WARNING: replacing previous ftable 1
ftable 1:
Csound tidy up: Segmentation violation

What's the current version number? When i run Csound I get this:

Csound version 6.02.0 beta (double samples) Feb  1 2014

On 1 February 2014 21:26, Victor Lazzarini  wrote:
> such a git.
> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>
>> Hold on everyone!! I just got gitted....it says I'm up to date with
>> the devel branch but neglected to say that I was still in the master
>> branch locally. Sincerest apologies for the noise.
>>
>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>> the score? Are you running the latest git tip on windows?
>>>
>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>> for me, the example csd rory has given does not come to an end. i have
>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>
>>>>        joachim
>>>>
>>>>
>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>> it does not segfault here. You sure this is the latest code?
>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>
>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>> specify a debug target? I see no option for debug?
>>>>>>
>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>> The instrument I use to create the segfault:
>>>>>>>
>>>>>>> 
>>>>>>> 
>>>>>>> -odac0
>>>>>>> 
>>>>>>> 
>>>>>>> sr = 44100
>>>>>>> ksmps = 64
>>>>>>> nchnls = 2
>>>>>>> 0dbfs=1
>>>>>>>
>>>>>>> instr 1
>>>>>>> endin
>>>>>>>
>>>>>>> instr 2
>>>>>>> rewindscore
>>>>>>> endin
>>>>>>>
>>>>>>> 
>>>>>>> 
>>>>>>> f1 0 1024 10 1
>>>>>>> i1 0 10
>>>>>>> i2 2 1
>>>>>>> 
>>>>>>> 
>>>>>>>
>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>> today and running git pull gives this:
>>>>>>>>
>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>> origin develop
>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>> Already up-to-date.
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>
>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>
>>>>>>>>> instr 2
>>>>>>>>> rewindscore
>>>>>>>>> endin
>>>>>>>>>
>>>>>>>>> to check.
>>>>>>>>>
>>>>>>>>> Victor
>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>
>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>> instrument using gen07.
>>>>>>>>>>
>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>> 351
>>>>>>>>>>
>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>
>>>>>>>>>> 
>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> sr = 44100
>>>>>>>>>> ksmps = 64
>>>>>>>>>> nchnls = 2
>>>>>>>>>> 0dbfs=1
>>>>>>>>>>
>>>>>>>>>> instr 1
>>>>>>>>>> endin
>>>>>>>>>>
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>> f0 3600
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>>
>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:52
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Can you confirm that one only needs to disable release build in order
to build the debug build? I can't understand why gdb is being so
vague?

On 1 February 2014 21:52, Victor Lazzarini  wrote:
> The version has not changed (it only does after the release).
> Actually, the previous code did not crash, so it's likely something else now.
> The trouble is that we can't reproduce the issue.
>
> Victor
>
> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>
>> It seems I'm still a git because after following these steps from my
>> csound6.git dir:
>>
>> git checkout develop
>> git pull origin develop
>> cd build
>> make clean
>> make
>> csound test.csd
>>
>> The problem remains.
>>
>> new alloc for instr 1:
>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>> new alloc for instr 2:
>> end of section 1         sect peak amps:  0.00000  0.00000
>> SECTION 1:
>> WARNING: Cannot rewind MIDI score
>>
>> WARNING: replacing previous ftable 1
>> ftable 1:
>> Csound tidy up: Segmentation violation
>>
>> What's the current version number? When i run Csound I get this:
>>
>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>
>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>> such a git.
>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>
>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>> the devel branch but neglected to say that I was still in the master
>>>> branch locally. Sincerest apologies for the noise.
>>>>
>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>> the score? Are you running the latest git tip on windows?
>>>>>
>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>
>>>>>>       joachim
>>>>>>
>>>>>>
>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>
>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>
>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> -odac0
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> sr = 44100
>>>>>>>>> ksmps = 64
>>>>>>>>> nchnls = 2
>>>>>>>>> 0dbfs=1
>>>>>>>>>
>>>>>>>>> instr 1
>>>>>>>>> endin
>>>>>>>>>
>>>>>>>>> instr 2
>>>>>>>>> rewindscore
>>>>>>>>> endin
>>>>>>>>>
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> f1 0 1024 10 1
>>>>>>>>> i1 0 10
>>>>>>>>> i2 2 1
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>>
>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>
>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>> origin develop
>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>> Already up-to-date.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>
>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>
>>>>>>>>>>> instr 2
>>>>>>>>>>> rewindscore
>>>>>>>>>>> endin
>>>>>>>>>>>
>>>>>>>>>>> to check.
>>>>>>>>>>>
>>>>>>>>>>> Victor
>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>
>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>> 351
>>>>>>>>>>>>
>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>
>>>>>>>>>>>> 
>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>
>>>>>>>>>>>> instr 1
>>>>>>>>>>>> endin
>>>>>>>>>>>>
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>> f0 3600
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:52
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
The version has not changed (it only does after the release).
Actually, the previous code did not crash, so it’s likely something else now.
The trouble is that we can’t reproduce the issue.

Victor

On 1 Feb 2014, at 21:31, Rory Walsh  wrote:

> It seems I'm still a git because after following these steps from my
> csound6.git dir:
> 
> git checkout develop
> git pull origin develop
> cd build
> make clean
> make
> csound test.csd
> 
> The problem remains.
> 
> new alloc for instr 1:
> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
> new alloc for instr 2:
> end of section 1         sect peak amps:  0.00000  0.00000
> SECTION 1:
> WARNING: Cannot rewind MIDI score
> 
> WARNING: replacing previous ftable 1
> ftable 1:
> Csound tidy up: Segmentation violation
> 
> What's the current version number? When i run Csound I get this:
> 
> Csound version 6.02.0 beta (double samples) Feb  1 2014
> 
> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>> such a git.
>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>> 
>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>> the devel branch but neglected to say that I was still in the master
>>> branch locally. Sincerest apologies for the noise.
>>> 
>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>> the score? Are you running the latest git tip on windows?
>>>> 
>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>> 
>>>>>       joachim
>>>>> 
>>>>> 
>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>> 
>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>> specify a debug target? I see no option for debug?
>>>>>>> 
>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>> The instrument I use to create the segfault:
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> -odac0
>>>>>>>> 
>>>>>>>> 
>>>>>>>> sr = 44100
>>>>>>>> ksmps = 64
>>>>>>>> nchnls = 2
>>>>>>>> 0dbfs=1
>>>>>>>> 
>>>>>>>> instr 1
>>>>>>>> endin
>>>>>>>> 
>>>>>>>> instr 2
>>>>>>>> rewindscore
>>>>>>>> endin
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> f1 0 1024 10 1
>>>>>>>> i1 0 10
>>>>>>>> i2 2 1
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>> today and running git pull gives this:
>>>>>>>>> 
>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>> origin develop
>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>> Already up-to-date.
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>> 
>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>> 
>>>>>>>>>> instr 2
>>>>>>>>>> rewindscore
>>>>>>>>>> endin
>>>>>>>>>> 
>>>>>>>>>> to check.
>>>>>>>>>> 
>>>>>>>>>> Victor
>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>> 
>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>> 351
>>>>>>>>>>> 
>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> sr = 44100
>>>>>>>>>>> ksmps = 64
>>>>>>>>>>> nchnls = 2
>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>> 
>>>>>>>>>>> instr 1
>>>>>>>>>>> endin
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>> f0 3600
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:56
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Can you copy here the terminal output when you get crash with the rewindscore csd?
On 1 Feb 2014, at 21:31, Rory Walsh  wrote:

> It seems I'm still a git because after following these steps from my
> csound6.git dir:
> 
> git checkout develop
> git pull origin develop
> cd build
> make clean
> make
> csound test.csd
> 
> The problem remains.
> 
> new alloc for instr 1:
> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
> new alloc for instr 2:
> end of section 1         sect peak amps:  0.00000  0.00000
> SECTION 1:
> WARNING: Cannot rewind MIDI score
> 
> WARNING: replacing previous ftable 1
> ftable 1:
> Csound tidy up: Segmentation violation
> 
> What's the current version number? When i run Csound I get this:
> 
> Csound version 6.02.0 beta (double samples) Feb  1 2014
> 
> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>> such a git.
>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>> 
>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>> the devel branch but neglected to say that I was still in the master
>>> branch locally. Sincerest apologies for the noise.
>>> 
>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>> the score? Are you running the latest git tip on windows?
>>>> 
>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>> 
>>>>>       joachim
>>>>> 
>>>>> 
>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>> 
>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>> specify a debug target? I see no option for debug?
>>>>>>> 
>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>> The instrument I use to create the segfault:
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> -odac0
>>>>>>>> 
>>>>>>>> 
>>>>>>>> sr = 44100
>>>>>>>> ksmps = 64
>>>>>>>> nchnls = 2
>>>>>>>> 0dbfs=1
>>>>>>>> 
>>>>>>>> instr 1
>>>>>>>> endin
>>>>>>>> 
>>>>>>>> instr 2
>>>>>>>> rewindscore
>>>>>>>> endin
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> f1 0 1024 10 1
>>>>>>>> i1 0 10
>>>>>>>> i2 2 1
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>> today and running git pull gives this:
>>>>>>>>> 
>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>> origin develop
>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>> Already up-to-date.
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>> 
>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>> 
>>>>>>>>>> instr 2
>>>>>>>>>> rewindscore
>>>>>>>>>> endin
>>>>>>>>>> 
>>>>>>>>>> to check.
>>>>>>>>>> 
>>>>>>>>>> Victor
>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>> 
>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>> 351
>>>>>>>>>>> 
>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> sr = 44100
>>>>>>>>>>> ksmps = 64
>>>>>>>>>>> nchnls = 2
>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>> 
>>>>>>>>>>> instr 1
>>>>>>>>>>> endin
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>> f0 3600
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 21:58
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
set(CMAKE_BUILD_TYPE "Debug")

On 1 Feb 2014, at 21:52, Rory Walsh  wrote:

> Can you confirm that one only needs to disable release build in order
> to build the debug build? I can't understand why gdb is being so
> vague?
> 
> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>> The version has not changed (it only does after the release).
>> Actually, the previous code did not crash, so it's likely something else now.
>> The trouble is that we can't reproduce the issue.
>> 
>> Victor
>> 
>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>> 
>>> It seems I'm still a git because after following these steps from my
>>> csound6.git dir:
>>> 
>>> git checkout develop
>>> git pull origin develop
>>> cd build
>>> make clean
>>> make
>>> csound test.csd
>>> 
>>> The problem remains.
>>> 
>>> new alloc for instr 1:
>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>> new alloc for instr 2:
>>> end of section 1         sect peak amps:  0.00000  0.00000
>>> SECTION 1:
>>> WARNING: Cannot rewind MIDI score
>>> 
>>> WARNING: replacing previous ftable 1
>>> ftable 1:
>>> Csound tidy up: Segmentation violation
>>> 
>>> What's the current version number? When i run Csound I get this:
>>> 
>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>> 
>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>> such a git.
>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>> 
>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>> the devel branch but neglected to say that I was still in the master
>>>>> branch locally. Sincerest apologies for the noise.
>>>>> 
>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>> the score? Are you running the latest git tip on windows?
>>>>>> 
>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>> 
>>>>>>>      joachim
>>>>>>> 
>>>>>>> 
>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>> 
>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> -odac0
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> sr = 44100
>>>>>>>>>> ksmps = 64
>>>>>>>>>> nchnls = 2
>>>>>>>>>> 0dbfs=1
>>>>>>>>>> 
>>>>>>>>>> instr 1
>>>>>>>>>> endin
>>>>>>>>>> 
>>>>>>>>>> instr 2
>>>>>>>>>> rewindscore
>>>>>>>>>> endin
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>> i1 0 10
>>>>>>>>>> i2 2 1
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>> 
>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>> origin develop
>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>> 
>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>> 
>>>>>>>>>>>> instr 2
>>>>>>>>>>>> rewindscore
>>>>>>>>>>>> endin
>>>>>>>>>>>> 
>>>>>>>>>>>> to check.
>>>>>>>>>>>> 
>>>>>>>>>>>> Victor
>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>> 351
>>>>>>>>>>>>> 
>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>> 
>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>> endin
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 22:07
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Great, now I can at least retrieve some info for you:

0  0x6c509690  gen10
C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
 780
1  0x6c507a71  hfgens
C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
 259
2  0x6c52286c  process_score_event
C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
 769
3  0x6c52317f  sensevents
C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
 946
4  0x6c664d64  csoundPerformKsmps
C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
 1617
5  0x006de666  Csound::PerformKsmps
C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
 351


On 1 February 2014 21:58, Victor Lazzarini  wrote:
> set(CMAKE_BUILD_TYPE "Debug")
>
> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>
>> Can you confirm that one only needs to disable release build in order
>> to build the debug build? I can't understand why gdb is being so
>> vague?
>>
>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>> The version has not changed (it only does after the release).
>>> Actually, the previous code did not crash, so it's likely something else now.
>>> The trouble is that we can't reproduce the issue.
>>>
>>> Victor
>>>
>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>
>>>> It seems I'm still a git because after following these steps from my
>>>> csound6.git dir:
>>>>
>>>> git checkout develop
>>>> git pull origin develop
>>>> cd build
>>>> make clean
>>>> make
>>>> csound test.csd
>>>>
>>>> The problem remains.
>>>>
>>>> new alloc for instr 1:
>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>> new alloc for instr 2:
>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>> SECTION 1:
>>>> WARNING: Cannot rewind MIDI score
>>>>
>>>> WARNING: replacing previous ftable 1
>>>> ftable 1:
>>>> Csound tidy up: Segmentation violation
>>>>
>>>> What's the current version number? When i run Csound I get this:
>>>>
>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>
>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>> such a git.
>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>
>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>
>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>
>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>
>>>>>>>>      joachim
>>>>>>>>
>>>>>>>>
>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>
>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>
>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> -odac0
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> sr = 44100
>>>>>>>>>>> ksmps = 64
>>>>>>>>>>> nchnls = 2
>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>
>>>>>>>>>>> instr 1
>>>>>>>>>>> endin
>>>>>>>>>>>
>>>>>>>>>>> instr 2
>>>>>>>>>>> rewindscore
>>>>>>>>>>> endin
>>>>>>>>>>>
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>> i1 0 10
>>>>>>>>>>> i2 2 1
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>>
>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>
>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>> origin develop
>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>
>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>
>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>> endin
>>>>>>>>>>>>>
>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Victor
>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 23:09
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
OK, I see that it’s crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
why it’s crashing. Can you check whether there is a memory access violation or something?
It does not happen here.

On 1 Feb 2014, at 22:07, Rory Walsh  wrote:

> Great, now I can at least retrieve some info for you:
> 
> 0  0x6c509690  gen10
> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
> 780
> 1  0x6c507a71  hfgens
> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
> 259
> 2  0x6c52286c  process_score_event
> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
> 769
> 3  0x6c52317f  sensevents
> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
> 946
> 4  0x6c664d64  csoundPerformKsmps
> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
> 1617
> 5  0x006de666  Csound::PerformKsmps
> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
> 351
> 
> 
> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>> set(CMAKE_BUILD_TYPE "Debug")
>> 
>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>> 
>>> Can you confirm that one only needs to disable release build in order
>>> to build the debug build? I can't understand why gdb is being so
>>> vague?
>>> 
>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>> The version has not changed (it only does after the release).
>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>> The trouble is that we can't reproduce the issue.
>>>> 
>>>> Victor
>>>> 
>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>> 
>>>>> It seems I'm still a git because after following these steps from my
>>>>> csound6.git dir:
>>>>> 
>>>>> git checkout develop
>>>>> git pull origin develop
>>>>> cd build
>>>>> make clean
>>>>> make
>>>>> csound test.csd
>>>>> 
>>>>> The problem remains.
>>>>> 
>>>>> new alloc for instr 1:
>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>> new alloc for instr 2:
>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>> SECTION 1:
>>>>> WARNING: Cannot rewind MIDI score
>>>>> 
>>>>> WARNING: replacing previous ftable 1
>>>>> ftable 1:
>>>>> Csound tidy up: Segmentation violation
>>>>> 
>>>>> What's the current version number? When i run Csound I get this:
>>>>> 
>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>> 
>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>> such a git.
>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>> 
>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>> 
>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>> 
>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>> 
>>>>>>>>>     joachim
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> -odac0
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>> 
>>>>>>>>>>>> instr 1
>>>>>>>>>>>> endin
>>>>>>>>>>>> 
>>>>>>>>>>>> instr 2
>>>>>>>>>>>> rewindscore
>>>>>>>>>>>> endin
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 23:31
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
fp isn't right the second time through. I tried adding a  if(fp!=NULL)
test which it passes fine for the first run of gen10, on the second
run it gets through the test once, but then I get a sigrev, no more
info than that I'm afraid. I can also confirm that flen is 1024 the
second time around. Can I add anything that will give you more info?

On 1 February 2014 23:09, Victor Lazzarini  wrote:
> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
> why it's crashing. Can you check whether there is a memory access violation or something?
> It does not happen here.
>
> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>
>> Great, now I can at least retrieve some info for you:
>>
>> 0  0x6c509690  gen10
>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> 780
>> 1  0x6c507a71  hfgens
>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> 259
>> 2  0x6c52286c  process_score_event
>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> 769
>> 3  0x6c52317f  sensevents
>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> 946
>> 4  0x6c664d64  csoundPerformKsmps
>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>> 1617
>> 5  0x006de666  Csound::PerformKsmps
>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> 351
>>
>>
>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>> set(CMAKE_BUILD_TYPE "Debug")
>>>
>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>
>>>> Can you confirm that one only needs to disable release build in order
>>>> to build the debug build? I can't understand why gdb is being so
>>>> vague?
>>>>
>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>> The version has not changed (it only does after the release).
>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>> The trouble is that we can't reproduce the issue.
>>>>>
>>>>> Victor
>>>>>
>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>
>>>>>> It seems I'm still a git because after following these steps from my
>>>>>> csound6.git dir:
>>>>>>
>>>>>> git checkout develop
>>>>>> git pull origin develop
>>>>>> cd build
>>>>>> make clean
>>>>>> make
>>>>>> csound test.csd
>>>>>>
>>>>>> The problem remains.
>>>>>>
>>>>>> new alloc for instr 1:
>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>> new alloc for instr 2:
>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>> SECTION 1:
>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>
>>>>>> WARNING: replacing previous ftable 1
>>>>>> ftable 1:
>>>>>> Csound tidy up: Segmentation violation
>>>>>>
>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>
>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>
>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>> such a git.
>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>
>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>
>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>
>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>
>>>>>>>>>>     joachim
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>
>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>
>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>> endin
>>>>>>>>>>>>>
>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>> endin
>>>>>>>>>>>>>
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-01 23:37
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
I mean to say that it still passes the test but somehow *fp still
causes a segrev..

On 1 February 2014 23:31, Rory Walsh  wrote:
> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
> test which it passes fine for the first run of gen10, on the second
> run it gets through the test once, but then I get a sigrev, no more
> info than that I'm afraid. I can also confirm that flen is 1024 the
> second time around. Can I add anything that will give you more info?
>
> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>> why it's crashing. Can you check whether there is a memory access violation or something?
>> It does not happen here.
>>
>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>
>>> Great, now I can at least retrieve some info for you:
>>>
>>> 0  0x6c509690  gen10
>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>> 780
>>> 1  0x6c507a71  hfgens
>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>> 259
>>> 2  0x6c52286c  process_score_event
>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>> 769
>>> 3  0x6c52317f  sensevents
>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>> 946
>>> 4  0x6c664d64  csoundPerformKsmps
>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>> 1617
>>> 5  0x006de666  Csound::PerformKsmps
>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>> 351
>>>
>>>
>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>
>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>
>>>>> Can you confirm that one only needs to disable release build in order
>>>>> to build the debug build? I can't understand why gdb is being so
>>>>> vague?
>>>>>
>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>> The version has not changed (it only does after the release).
>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>
>>>>>> Victor
>>>>>>
>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>
>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>> csound6.git dir:
>>>>>>>
>>>>>>> git checkout develop
>>>>>>> git pull origin develop
>>>>>>> cd build
>>>>>>> make clean
>>>>>>> make
>>>>>>> csound test.csd
>>>>>>>
>>>>>>> The problem remains.
>>>>>>>
>>>>>>> new alloc for instr 1:
>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>> new alloc for instr 2:
>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>> SECTION 1:
>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>
>>>>>>> WARNING: replacing previous ftable 1
>>>>>>> ftable 1:
>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>
>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>
>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>
>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>> such a git.
>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>
>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>
>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>
>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>
>>>>>>>>>>>     joachim
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 00:12
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
you can put a breakpoint in that line, and check that the value of fp is the same both times (it should be, as it has not been reallocated).
On 1 Feb 2014, at 23:37, Rory Walsh  wrote:

> I mean to say that it still passes the test but somehow *fp still
> causes a segrev..
> 
> On 1 February 2014 23:31, Rory Walsh  wrote:
>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>> test which it passes fine for the first run of gen10, on the second
>> run it gets through the test once, but then I get a sigrev, no more
>> info than that I'm afraid. I can also confirm that flen is 1024 the
>> second time around. Can I add anything that will give you more info?
>> 
>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>> It does not happen here.
>>> 
>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>> 
>>>> Great, now I can at least retrieve some info for you:
>>>> 
>>>> 0  0x6c509690  gen10
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>> 780
>>>> 1  0x6c507a71  hfgens
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>> 259
>>>> 2  0x6c52286c  process_score_event
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>> 769
>>>> 3  0x6c52317f  sensevents
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>> 946
>>>> 4  0x6c664d64  csoundPerformKsmps
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>> 1617
>>>> 5  0x006de666  Csound::PerformKsmps
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>> 351
>>>> 
>>>> 
>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>> 
>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>> 
>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>> vague?
>>>>>> 
>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>> The version has not changed (it only does after the release).
>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>> 
>>>>>>> Victor
>>>>>>> 
>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>> csound6.git dir:
>>>>>>>> 
>>>>>>>> git checkout develop
>>>>>>>> git pull origin develop
>>>>>>>> cd build
>>>>>>>> make clean
>>>>>>>> make
>>>>>>>> csound test.csd
>>>>>>>> 
>>>>>>>> The problem remains.
>>>>>>>> 
>>>>>>>> new alloc for instr 1:
>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>> new alloc for instr 2:
>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>> SECTION 1:
>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>> 
>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>> ftable 1:
>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>> 
>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>> 
>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>> 
>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>> such a git.
>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>> 
>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>> 
>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>> 
>>>>>>>>>>>>    joachim
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 00:15
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
I can’t find out what sigrev means. Are you sure it’s the name of the signal?
On 1 Feb 2014, at 23:37, Rory Walsh  wrote:

> I mean to say that it still passes the test but somehow *fp still
> causes a segrev..
> 
> On 1 February 2014 23:31, Rory Walsh  wrote:
>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>> test which it passes fine for the first run of gen10, on the second
>> run it gets through the test once, but then I get a sigrev, no more
>> info than that I'm afraid. I can also confirm that flen is 1024 the
>> second time around. Can I add anything that will give you more info?
>> 
>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>> It does not happen here.
>>> 
>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>> 
>>>> Great, now I can at least retrieve some info for you:
>>>> 
>>>> 0  0x6c509690  gen10
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>> 780
>>>> 1  0x6c507a71  hfgens
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>> 259
>>>> 2  0x6c52286c  process_score_event
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>> 769
>>>> 3  0x6c52317f  sensevents
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>> 946
>>>> 4  0x6c664d64  csoundPerformKsmps
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>> 1617
>>>> 5  0x006de666  Csound::PerformKsmps
>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>> 351
>>>> 
>>>> 
>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>> 
>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>> 
>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>> vague?
>>>>>> 
>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>> The version has not changed (it only does after the release).
>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>> 
>>>>>>> Victor
>>>>>>> 
>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>> csound6.git dir:
>>>>>>>> 
>>>>>>>> git checkout develop
>>>>>>>> git pull origin develop
>>>>>>>> cd build
>>>>>>>> make clean
>>>>>>>> make
>>>>>>>> csound test.csd
>>>>>>>> 
>>>>>>>> The problem remains.
>>>>>>>> 
>>>>>>>> new alloc for instr 1:
>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>> new alloc for instr 2:
>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>> SECTION 1:
>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>> 
>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>> ftable 1:
>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>> 
>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>> 
>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>> 
>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>> such a git.
>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>> 
>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>> 
>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>> 
>>>>>>>>>>>>    joachim
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 00:40
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
I ran under valgrind and that did not find any memory errors. So it’s impossible to tell what the
problem is, but it looks like it’s Windows-only.

Victor
On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:

> I can’t find out what sigrev means. Are you sure it’s the name of the signal?
> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
> 
>> I mean to say that it still passes the test but somehow *fp still
>> causes a segrev..
>> 
>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>> test which it passes fine for the first run of gen10, on the second
>>> run it gets through the test once, but then I get a sigrev, no more
>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>> second time around. Can I add anything that will give you more info?
>>> 
>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>> It does not happen here.
>>>> 
>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>> 
>>>>> Great, now I can at least retrieve some info for you:
>>>>> 
>>>>> 0  0x6c509690  gen10
>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>> 780
>>>>> 1  0x6c507a71  hfgens
>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>> 259
>>>>> 2  0x6c52286c  process_score_event
>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>> 769
>>>>> 3  0x6c52317f  sensevents
>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>> 946
>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>> 1617
>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>> 351
>>>>> 
>>>>> 
>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>> 
>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>> 
>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>> vague?
>>>>>>> 
>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>> 
>>>>>>>> Victor
>>>>>>>> 
>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>> 
>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>> csound6.git dir:
>>>>>>>>> 
>>>>>>>>> git checkout develop
>>>>>>>>> git pull origin develop
>>>>>>>>> cd build
>>>>>>>>> make clean
>>>>>>>>> make
>>>>>>>>> csound test.csd
>>>>>>>>> 
>>>>>>>>> The problem remains.
>>>>>>>>> 
>>>>>>>>> new alloc for instr 1:
>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>> new alloc for instr 2:
>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>> SECTION 1:
>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>> 
>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>> ftable 1:
>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>> 
>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>> 
>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>> such a git.
>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>> 
>>>>>>>>>>>>>   joachim
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable 
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 10:57
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
soon as *fp is accessed the second time around. So I can't check the
value of fp as it seg faults as soon as I step to the line.

On 2 February 2014 00:40, Victor Lazzarini  wrote:
> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
> problem is, but it looks like it's Windows-only.
>
> Victor
> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>
>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>
>>> I mean to say that it still passes the test but somehow *fp still
>>> causes a segrev..
>>>
>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>> test which it passes fine for the first run of gen10, on the second
>>>> run it gets through the test once, but then I get a sigrev, no more
>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>> second time around. Can I add anything that will give you more info?
>>>>
>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>> It does not happen here.
>>>>>
>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>
>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>
>>>>>> 0  0x6c509690  gen10
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>> 780
>>>>>> 1  0x6c507a71  hfgens
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>> 259
>>>>>> 2  0x6c52286c  process_score_event
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>> 769
>>>>>> 3  0x6c52317f  sensevents
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>> 946
>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>> 1617
>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>> 351
>>>>>>
>>>>>>
>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>
>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>
>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>> vague?
>>>>>>>>
>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>
>>>>>>>>> Victor
>>>>>>>>>
>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>
>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>> csound6.git dir:
>>>>>>>>>>
>>>>>>>>>> git checkout develop
>>>>>>>>>> git pull origin develop
>>>>>>>>>> cd build
>>>>>>>>>> make clean
>>>>>>>>>> make
>>>>>>>>>> csound test.csd
>>>>>>>>>>
>>>>>>>>>> The problem remains.
>>>>>>>>>>
>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>> SECTION 1:
>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>
>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>> ftable 1:
>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>
>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>
>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>
>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>> such a git.
>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>   joachim
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 11:35
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)? 
The pointer needs to be the same, if it’s not then it’s wrong.
On 2 Feb 2014, at 10:57, Rory Walsh  wrote:

> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
> soon as *fp is accessed the second time around. So I can't check the
> value of fp as it seg faults as soon as I step to the line.
> 
> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>> problem is, but it looks like it's Windows-only.
>> 
>> Victor
>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>> 
>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>> 
>>>> I mean to say that it still passes the test but somehow *fp still
>>>> causes a segrev..
>>>> 
>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>> test which it passes fine for the first run of gen10, on the second
>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>> second time around. Can I add anything that will give you more info?
>>>>> 
>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>> It does not happen here.
>>>>>> 
>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>> 
>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>> 
>>>>>>> 0  0x6c509690  gen10
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>> 780
>>>>>>> 1  0x6c507a71  hfgens
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>> 259
>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>> 769
>>>>>>> 3  0x6c52317f  sensevents
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>> 946
>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>> 1617
>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>> 351
>>>>>>> 
>>>>>>> 
>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>> 
>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>> 
>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>> vague?
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>> 
>>>>>>>>>> Victor
>>>>>>>>>> 
>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>> 
>>>>>>>>>>> git checkout develop
>>>>>>>>>>> git pull origin develop
>>>>>>>>>>> cd build
>>>>>>>>>>> make clean
>>>>>>>>>>> make
>>>>>>>>>>> csound test.csd
>>>>>>>>>>> 
>>>>>>>>>>> The problem remains.
>>>>>>>>>>> 
>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>> SECTION 1:
>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>> 
>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>> ftable 1:
>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>> 
>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>> 
>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>> such a git.
>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>  joachim
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 11:39
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
It's 0x31f2dc0 each time.


On 2 February 2014 11:35, Victor Lazzarini  wrote:
> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
> The pointer needs to be the same, if it's not then it's wrong.
> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>
>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>> soon as *fp is accessed the second time around. So I can't check the
>> value of fp as it seg faults as soon as I step to the line.
>>
>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>> problem is, but it looks like it's Windows-only.
>>>
>>> Victor
>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>>>
>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>
>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>> causes a segrev..
>>>>>
>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>
>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>> It does not happen here.
>>>>>>>
>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>
>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>
>>>>>>>> 0  0x6c509690  gen10
>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>> 780
>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>> 259
>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>> 769
>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>> 946
>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>> 1617
>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>> 351
>>>>>>>>
>>>>>>>>
>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>
>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>
>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>> vague?
>>>>>>>>>>
>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>
>>>>>>>>>>> Victor
>>>>>>>>>>>
>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>>>
>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>
>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>> cd build
>>>>>>>>>>>> make clean
>>>>>>>>>>>> make
>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>
>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>
>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>
>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>
>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>
>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>  joachim
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 11:41
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
That is to say, it stays the same on each run of the application. No change.

On 2 February 2014 11:39, Rory Walsh  wrote:
> It's 0x31f2dc0 each time.
>
>
> On 2 February 2014 11:35, Victor Lazzarini  wrote:
>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>> The pointer needs to be the same, if it's not then it's wrong.
>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>
>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>> soon as *fp is accessed the second time around. So I can't check the
>>> value of fp as it seg faults as soon as I step to the line.
>>>
>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>>> problem is, but it looks like it's Windows-only.
>>>>
>>>> Victor
>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>>>>
>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>
>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>> causes a segrev..
>>>>>>
>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>>
>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>>> It does not happen here.
>>>>>>>>
>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>
>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>
>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>> 780
>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>> 259
>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>> 769
>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>> 946
>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>> 1617
>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>> 351
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>
>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>
>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>>> vague?
>>>>>>>>>>>
>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>
>>>>>>>>>>>> Victor
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>
>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>> cd build
>>>>>>>>>>>>> make clean
>>>>>>>>>>>>> make
>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>
>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>
>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>
>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>
>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>>
>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>  joachim
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 11:49
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Ok, that’s good in a way, but bad in another, as we don’t know why the access violation has occurred.
Could you now check whether the access violation occurs at the first try to write to the memory (in line 780) 
or in any subsequent iterations of the loop?

I am afraid I will have to use you to debug this, because we don’t have a windows machine available.

Thanks.

Victor

On 2 Feb 2014, at 11:39, Rory Walsh  wrote:

> It's 0x31f2dc0 each time.
> 
> 
> On 2 February 2014 11:35, Victor Lazzarini  wrote:
>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>> The pointer needs to be the same, if it's not then it's wrong.
>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>> 
>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>> soon as *fp is accessed the second time around. So I can't check the
>>> value of fp as it seg faults as soon as I step to the line.
>>> 
>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>>> problem is, but it looks like it's Windows-only.
>>>> 
>>>> Victor
>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>>>> 
>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>> 
>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>> causes a segrev..
>>>>>> 
>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>> 
>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>>> It does not happen here.
>>>>>>>> 
>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>> 
>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>> 
>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>> 780
>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>> 259
>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>> 769
>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>> 946
>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>> 1617
>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>> 351
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>> 
>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>>> vague?
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>> 
>>>>>>>>>>>> Victor
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>> cd build
>>>>>>>>>>>>> make clean
>>>>>>>>>>>>> make
>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>> 
>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>> 
>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>> 
>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 11:51
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
We also want to isolate the segfault, make sure it’s writing to fp[] that is the problem, so
you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
We don’t want to be barking at the wrong tree.

Victor
On 2 Feb 2014, at 11:39, Rory Walsh  wrote:

> It's 0x31f2dc0 each time.
> 
> 
> On 2 February 2014 11:35, Victor Lazzarini  wrote:
>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>> The pointer needs to be the same, if it's not then it's wrong.
>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>> 
>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>> soon as *fp is accessed the second time around. So I can't check the
>>> value of fp as it seg faults as soon as I step to the line.
>>> 
>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>>> problem is, but it looks like it's Windows-only.
>>>> 
>>>> Victor
>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>>>> 
>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>> 
>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>> causes a segrev..
>>>>>> 
>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>> 
>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>>> It does not happen here.
>>>>>>>> 
>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>> 
>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>> 
>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>> 780
>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>> 259
>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>> 769
>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>> 946
>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>> 1617
>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>> 351
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>> 
>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>>> vague?
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>> 
>>>>>>>>>>>> Victor
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>> cd build
>>>>>>>>>>>>> make clean
>>>>>>>>>>>>> make
>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>> 
>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>> 
>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>> 
>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 11:52
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
That was one of the things I tried last night. I think we can be
certain it happens when trying to assign a value to fp[]. And I can
confirm that it happens at the first attempt to write to fp, after a
rewind score.

On 2 February 2014 11:51, Victor Lazzarini  wrote:
> We also want to isolate the segfault, make sure it's writing to fp[] that is the problem, so
> you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
> We don't want to be barking at the wrong tree.
>
> Victor
> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>
>> It's 0x31f2dc0 each time.
>>
>>
>> On 2 February 2014 11:35, Victor Lazzarini  wrote:
>>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>>> The pointer needs to be the same, if it's not then it's wrong.
>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>
>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>> soon as *fp is accessed the second time around. So I can't check the
>>>> value of fp as it seg faults as soon as I step to the line.
>>>>
>>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>>>> problem is, but it looks like it's Windows-only.
>>>>>
>>>>> Victor
>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>>>>>
>>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>
>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>> causes a segrev..
>>>>>>>
>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>>>
>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>>>> It does not happen here.
>>>>>>>>>
>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>
>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>
>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>> 780
>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>> 259
>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>> 769
>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>> 946
>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>> 1617
>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>> 351
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>
>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>>>> vague?
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>> make
>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:06
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Ok, so what we might have here is the memory being used at some point by another bit 
of the program, possibly freed. Now that is what I was after when testing with valgrind,
because it often does not segfault in some systems. However, valgrind can’t find a problem here.

Can you try to  get valgrind in your machine? I see instructions in

http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/

Victor

On 2 Feb 2014, at 11:52, Rory Walsh  wrote:

> That was one of the things I tried last night. I think we can be
> certain it happens when trying to assign a value to fp[]. And I can
> confirm that it happens at the first attempt to write to fp, after a
> rewind score.
> 
> On 2 February 2014 11:51, Victor Lazzarini  wrote:
>> We also want to isolate the segfault, make sure it's writing to fp[] that is the problem, so
>> you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
>> We don't want to be barking at the wrong tree.
>> 
>> Victor
>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>> 
>>> It's 0x31f2dc0 each time.
>>> 
>>> 
>>> On 2 February 2014 11:35, Victor Lazzarini  wrote:
>>>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>> 
>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>> 
>>>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>>>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>>>>> problem is, but it looks like it's Windows-only.
>>>>>> 
>>>>>> Victor
>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>>>>>> 
>>>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>> causes a segrev..
>>>>>>>> 
>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>>>>> It does not happen here.
>>>>>>>>>> 
>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>> 
>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>> 780
>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>> 259
>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>> 769
>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>> 946
>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>> 1617
>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>> 351
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>>>>> vague?
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:10
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Also can you check this for me:

1) don’t use rewindscore

2) set two f-statements

f1 0 1024 10 1

and

f1 1 1024 10 1

This will replace the table without rewinding. I want to isolate the fault to
just replacing the table.

On 2 Feb 2014, at 11:52, Rory Walsh  wrote:

> That was one of the things I tried last night. I think we can be
> certain it happens when trying to assign a value to fp[]. And I can
> confirm that it happens at the first attempt to write to fp, after a
> rewind score.
> 
> On 2 February 2014 11:51, Victor Lazzarini  wrote:
>> We also want to isolate the segfault, make sure it's writing to fp[] that is the problem, so
>> you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
>> We don't want to be barking at the wrong tree.
>> 
>> Victor
>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>> 
>>> It's 0x31f2dc0 each time.
>>> 
>>> 
>>> On 2 February 2014 11:35, Victor Lazzarini  wrote:
>>>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>> 
>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>> 
>>>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>>>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>>>>> problem is, but it looks like it's Windows-only.
>>>>>> 
>>>>>> Victor
>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>>>>>> 
>>>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>> causes a segrev..
>>>>>>>> 
>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>>>> 
>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>>>>> It does not happen here.
>>>>>>>>>> 
>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>> 
>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>> 780
>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>> 259
>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>> 769
>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>> 946
>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>> 1617
>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>> 351
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>>>>> vague?
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>>>>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:15
FromMichael Gogins
SubjectRe: [Cs-dev] latest devel for windows..
AttachmentsNone  None  

Valgrind not good on windows, use dr memory.

On Feb 2, 2014 7:02 AM, "Victor Lazzarini" <Victor.Lazzarini@nuim.ie> wrote:
Ok, so what we might have here is the memory being used at some point by another bit
of the program, possibly freed. Now that is what I was after when testing with valgrind,
because it often does not segfault in some systems. However, valgrind can’t find a problem here.

Can you try to  get valgrind in your machine? I see instructions in

http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/

Victor

On 2 Feb 2014, at 11:52, Rory Walsh <rorywalsh@ear.ie> wrote:

> That was one of the things I tried last night. I think we can be
> certain it happens when trying to assign a value to fp[]. And I can
> confirm that it happens at the first attempt to write to fp, after a
> rewind score.
>
> On 2 February 2014 11:51, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>> We also want to isolate the segfault, make sure it's writing to fp[] that is the problem, so
>> you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
>> We don't want to be barking at the wrong tree.
>>
>> Victor
>> On 2 Feb 2014, at 11:39, Rory Walsh <rorywalsh@ear.ie> wrote:
>>
>>> It's 0x31f2dc0 each time.
>>>
>>>
>>> On 2 February 2014 11:35, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>> On 2 Feb 2014, at 10:57, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>
>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>
>>>>> On 2 February 2014 00:40, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>
>>>>>> Victor
>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>>>>
>>>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>
>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>> causes a segrev..
>>>>>>>>
>>>>>>>> On 1 February 2014 23:31, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>>>>>>>>> test which it passes fine for the first run of gen10, on the second
>>>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>>>>>>>>> second time around. Can I add anything that will give you more info?
>>>>>>>>>
>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>>>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>>>>>>>>>> It does not happen here.
>>>>>>>>>>
>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>
>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>
>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>> 780
>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>> 259
>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>> 769
>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>> 946
>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>> 1617
>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>> 351
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>>>>>>>>>>>> The version has not changed (it only does after the release).
>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz <jh@joachimheintz.de> wrote:
>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> <CsoundSynthesizer>
>>>>>>>>>>>>>>>>>>>>>> <CsOptions>
>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>> </CsOptions>
>>>>>>>>>>>>>>>>>>>>>> <CsInstruments>
>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> </CsInstruments>
>>>>>>>>>>>>>>>>>>>>>> <CsScore>
>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>> </CsScore>
>>>>>>>>>>>>>>>>>>>>>> </CsoundSynthesizer>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> <Cabbage>
>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>> </Cabbage>
>>>>>>>>>>>>>>>>>>>>>>>>> <CsoundSynthesizer>
>>>>>>>>>>>>>>>>>>>>>>>>> <CsOptions>
>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>> </CsOptions>
>>>>>>>>>>>>>>>>>>>>>>>>> <CsInstruments>
>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> </CsInstruments>
>>>>>>>>>>>>>>>>>>>>>>>>> <CsScore>
>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>> </CsScore>
>>>>>>>>>>>>>>>>>>>>>>>>> </CsoundSynthesizer>
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Date2014-02-02 12:18
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Same as before Victor:
ftable 1:       1024 points, scalemax 1.000
                              . - ' ' ' ' ' ' - . _
                        _ - '                       ' .
                    _ -                                 ' .
                  -                                         ' _
              . '                                               -
            -                                                     ' _
        _ '                                                           .
      .                                                                 -
    -                                                                     ' _
__'___________________________________________________________________________.
new alloc for instr 1:
B  0.000 ..  1.000 T  1.000 TT  1.000 M:  0.00000  0.00000
WARNING: replacing previous ftable 1
ftable 1:
Csound tidy up: Segmentation violation

I'll try out dr.memory..

On 2 February 2014 12:15, Michael Gogins  wrote:
> Valgrind not good on windows, use dr memory.
>
> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>>
>> Ok, so what we might have here is the memory being used at some point by
>> another bit
>> of the program, possibly freed. Now that is what I was after when testing
>> with valgrind,
>> because it often does not segfault in some systems. However, valgrind
>> can't find a problem here.
>>
>> Can you try to  get valgrind in your machine? I see instructions in
>>
>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>
>> Victor
>>
>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>
>> > That was one of the things I tried last night. I think we can be
>> > certain it happens when trying to assign a value to fp[]. And I can
>> > confirm that it happens at the first attempt to write to fp, after a
>> > rewind score.
>> >
>> > On 2 February 2014 11:51, Victor Lazzarini 
>> > wrote:
>> >> We also want to isolate the segfault, make sure it's writing to fp[]
>> >> that is the problem, so
>> >> you could replace the expression on the rhs (with the sin call etc)
>> >> with a 0.0, and see what happens.
>> >> We don't want to be barking at the wrong tree.
>> >>
>> >> Victor
>> >> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>> >>
>> >>> It's 0x31f2dc0 each time.
>> >>>
>> >>>
>> >>> On 2 February 2014 11:35, Victor Lazzarini 
>> >>> wrote:
>> >>>> Can you place a breakpoint in the line before the crash and then
>> >>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>> >>>> The pointer needs to be the same, if it's not then it's wrong.
>> >>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>> >>>>
>> >>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>> >>>>> soon as *fp is accessed the second time around. So I can't check the
>> >>>>> value of fp as it seg faults as soon as I step to the line.
>> >>>>>
>> >>>>> On 2 February 2014 00:40, Victor Lazzarini
>> >>>>>  wrote:
>> >>>>>> I ran under valgrind and that did not find any memory errors. So
>> >>>>>> it's impossible to tell what the
>> >>>>>> problem is, but it looks like it's Windows-only.
>> >>>>>>
>> >>>>>> Victor
>> >>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>> >>>>>>  wrote:
>> >>>>>>
>> >>>>>>> I can't find out what sigrev means. Are you sure it's the name of
>> >>>>>>> the signal?
>> >>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>> >>>>>>>
>> >>>>>>>> I mean to say that it still passes the test but somehow *fp still
>> >>>>>>>> causes a segrev..
>> >>>>>>>>
>> >>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>> >>>>>>>>> fp isn't right the second time through. I tried adding a
>> >>>>>>>>> if(fp!=NULL)
>> >>>>>>>>> test which it passes fine for the first run of gen10, on the
>> >>>>>>>>> second
>> >>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>> >>>>>>>>> more
>> >>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024
>> >>>>>>>>> the
>> >>>>>>>>> second time around. Can I add anything that will give you more
>> >>>>>>>>> info?
>> >>>>>>>>>
>> >>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>> >>>>>>>>>  wrote:
>> >>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>> >>>>>>>>>> Can you run Csound in gdb and see whether it says
>> >>>>>>>>>> why it's crashing. Can you check whether there is a memory
>> >>>>>>>>>> access violation or something?
>> >>>>>>>>>> It does not happen here.
>> >>>>>>>>>>
>> >>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>> >>>>>>>>>>
>> >>>>>>>>>>> Great, now I can at least retrieve some info for you:
>> >>>>>>>>>>>
>> >>>>>>>>>>> 0  0x6c509690  gen10
>> >>>>>>>>>>>
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> >>>>>>>>>>> 780
>> >>>>>>>>>>> 1  0x6c507a71  hfgens
>> >>>>>>>>>>>
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> >>>>>>>>>>> 259
>> >>>>>>>>>>> 2  0x6c52286c  process_score_event
>> >>>>>>>>>>>
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> >>>>>>>>>>> 769
>> >>>>>>>>>>> 3  0x6c52317f  sensevents
>> >>>>>>>>>>>
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> >>>>>>>>>>> 946
>> >>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>> >>>>>>>>>>>
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>> >>>>>>>>>>> 1617
>> >>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>> >>>>>>>>>>>
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> >>>>>>>>>>> 351
>> >>>>>>>>>>>
>> >>>>>>>>>>>
>> >>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>> >>>>>>>>>>>  wrote:
>> >>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>> >>>>>>>>>>>>
>> >>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>> >>>>>>>>>>>>
>> >>>>>>>>>>>>> Can you confirm that one only needs to disable release build
>> >>>>>>>>>>>>> in order
>> >>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>> >>>>>>>>>>>>> being so
>> >>>>>>>>>>>>> vague?
>> >>>>>>>>>>>>>
>> >>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>> >>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>> The version has not changed (it only does after the
>> >>>>>>>>>>>>>> release).
>> >>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>> >>>>>>>>>>>>>> something else now.
>> >>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>> Victor
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>> >>>>>>>>>>>>>> wrote:
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> It seems I'm still a git because after following these
>> >>>>>>>>>>>>>>> steps from my
>> >>>>>>>>>>>>>>> csound6.git dir:
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> git checkout develop
>> >>>>>>>>>>>>>>> git pull origin develop
>> >>>>>>>>>>>>>>> cd build
>> >>>>>>>>>>>>>>> make clean
>> >>>>>>>>>>>>>>> make
>> >>>>>>>>>>>>>>> csound test.csd
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> The problem remains.
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> new alloc for instr 1:
>> >>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>> >>>>>>>>>>>>>>> new alloc for instr 2:
>> >>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>> >>>>>>>>>>>>>>> SECTION 1:
>> >>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>> >>>>>>>>>>>>>>> ftable 1:
>> >>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> What's the current version number? When i run Csound I get
>> >>>>>>>>>>>>>>> this:
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>> >>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>> such a git.
>> >>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>> >>>>>>>>>>>>>>>> wrote:
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>> >>>>>>>>>>>>>>>>> to date with
>> >>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>> >>>>>>>>>>>>>>>>> in the master
>> >>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>> >>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh 
>> >>>>>>>>>>>>>>>>> wrote:
>> >>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2
>> >>>>>>>>>>>>>>>>>> keeps rewinding
>> >>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>> >>>>>>>>>>>>>>>>>> windows?
>> >>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>> >>>>>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>> >>>>>>>>>>>>>>>>>>> to an end. i have
>> >>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>> >>>>>>>>>>>>>>>>>>> csound 5.19.
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> joachim
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>> >>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>> >>>>>>>>>>>>>>>>>>>> latest code?
>> >>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>> >>>>>>>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>> >>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>> >>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I
>> >>>>>>>>>>>>>>>>>>>>> have to do to
>> >>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>> >>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>> >>>>>>>>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> -odac0
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> sr = 44100
>> >>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>> >>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>> >>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> instr 1
>> >>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> instr 2
>> >>>>>>>>>>>>>>>>>>>>>> rewindscore
>> >>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>> >>>>>>>>>>>>>>>>>>>>>> i1 0 10
>> >>>>>>>>>>>>>>>>>>>>>> i2 2 1
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>> >>>>>>>>>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>> >>>>>>>>>>>>>>>>>>>>>>> command line causes a
>> >>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>> >>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>> >>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>> >>>>>>>>>>>>>>>>>>>>>>> origin develop
>> >>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>> >>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>> >>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>> >>>>>>>>>>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying
>> >>>>>>>>>>>>>>>>>>>>>>>> around (an old dll or something?).
>> >>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>> >>>>>>>>>>>>>>>>>>>>>>>> latest code.
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>> >>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> instr 2
>> >>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>> >>>>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> to check.
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> Victor
>> >>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>> >>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem
>> >>>>>>>>>>>>>>>>>>>>>>>>> from before regarding
>> >>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>> >>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>> >>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine,
>> >>>>>>>>>>>>>>>>>>>>>>>>> but as soon as I call
>> >>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>> >>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>> >>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>> >>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>> >>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time
>> >>>>>>>>>>>>>>>>>>>>>>>>> I change gen routine
>> >>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>> >>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>> >>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>> >>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>> >>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>> >>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>> >>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>> >>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> >>>>>>>>>>>>>>>>>>>>>>>>> 351
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>> >>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>> >>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>> >>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>> >>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>> >>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>> >>>>>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>> >>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>> >>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>> >>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>> >>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually
>> >>>>>>>>>>>>>>>>>>>>>>>>>> copy the Csound dlls
>> >>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>> >>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>> >>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>> >>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>> >>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>> >>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>> >>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>> >>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>> >>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>> >>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>> >>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>> >>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>> >>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>> >>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>> >>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>> >>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>> >>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>> >>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> >>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>> >>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>> >>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>> >>>>>>>>>>>>>>>>>>>>> data into actionable
>> >>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> >>>>>>>>>>>>>>>>>>>>> setup - simply import
>> >>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> >>>>>>>>>>>>>>>>>>>>> seconds.
>> >>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> >>>>>>>>>>>>>>>>>>>> into actionable
>> >>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> >>>>>>>>>>>>>>>>>>>> setup - simply import
>> >>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> >>>>>>>>>>>>>>>>>>>> seconds.
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> >>>>>>>>>>>>>>>>>>> into actionable
>> >>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> >>>>>>>>>>>>>>>>>>> setup - simply import
>> >>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> >>>>>>>>>>>>>>>>>>> seconds.
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> >>>>>>>>>>>>>>>>> into actionable
>> >>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>> >>>>>>>>>>>>>>>>> - simply import
>> >>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> >>>>>>>>>>>>>>>>> seconds.
>> >>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> >>>>>>>>>>>>>>>> into actionable
>> >>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> >>>>>>>>>>>>>>>> simply import
>> >>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> >>>>>>>>>>>>>>>> seconds.
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>>>>>>>>>> actionable
>> >>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> >>>>>>>>>>>>>>> simply import
>> >>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> >>>>>>>>>>>>>>> seconds.
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>>>>>>>>> actionable
>> >>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> >>>>>>>>>>>>>> simply import
>> >>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> >>>>>>>>>>>>>> seconds.
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>
>> >>>>>>>>>>>>>
>> >>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>>>>>>>> actionable
>> >>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> >>>>>>>>>>>>> feedback on key
>> >>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> >>>>>>>>>>>>> simply import
>> >>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>
>> >>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>
>> >>>>>>>>>>>>
>> >>>>>>>>>>>>
>> >>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>>>>>>> actionable
>> >>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>> >>>>>>>>>>>> on key
>> >>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> >>>>>>>>>>>> simply import
>> >>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>
>> >>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>
>> >>>>>>>>>>>
>> >>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>>>>>> actionable
>> >>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>> >>>>>>>>>>> on key
>> >>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> >>>>>>>>>>> simply import
>> >>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>
>> >>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>
>> >>>>>>>>>>
>> >>>>>>>>>>
>> >>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>>>>> actionable
>> >>>>>>>>>> security intelligence. It gives you real-time visual feedback
>> >>>>>>>>>> on key
>> >>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> >>>>>>>>>> simply import
>> >>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>
>> >>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>> _______________________________________________
>> >>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>
>> >>>>>>>>
>> >>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>>> actionable
>> >>>>>>>> security intelligence. It gives you real-time visual feedback on
>> >>>>>>>> key
>> >>>>>>>> security issues and trends.  Skip the complicated setup - simply
>> >>>>>>>> import
>> >>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>
>> >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>> _______________________________________________
>> >>>>>>>> Csound-devel mailing list
>> >>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>
>> >>>>>>>
>> >>>>>>>
>> >>>>>>> ------------------------------------------------------------------------------
>> >>>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>>> actionable
>> >>>>>>> security intelligence. It gives you real-time visual feedback on
>> >>>>>>> key
>> >>>>>>> security issues and trends.  Skip the complicated setup - simply
>> >>>>>>> import
>> >>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>
>> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>> _______________________________________________
>> >>>>>>> Csound-devel mailing list
>> >>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>>> ------------------------------------------------------------------------------
>> >>>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>>> actionable
>> >>>>>> security intelligence. It gives you real-time visual feedback on
>> >>>>>> key
>> >>>>>> security issues and trends.  Skip the complicated setup - simply
>> >>>>>> import
>> >>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>
>> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>> _______________________________________________
>> >>>>>> Csound-devel mailing list
>> >>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>
>> >>>>>
>> >>>>> ------------------------------------------------------------------------------
>> >>>>> WatchGuard Dimension instantly turns raw network data into
>> >>>>> actionable
>> >>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>> security issues and trends.  Skip the complicated setup - simply
>> >>>>> import
>> >>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>
>> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>> _______________________________________________
>> >>>>> Csound-devel mailing list
>> >>>>> Csound-devel@lists.sourceforge.net
>> >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>
>> >>>>
>> >>>>
>> >>>> ------------------------------------------------------------------------------
>> >>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>> security intelligence. It gives you real-time visual feedback on key
>> >>>> security issues and trends.  Skip the complicated setup - simply
>> >>>> import
>> >>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>
>> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>> _______________________________________________
>> >>>> Csound-devel mailing list
>> >>>> Csound-devel@lists.sourceforge.net
>> >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>
>> >>>
>> >>> ------------------------------------------------------------------------------
>> >>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>> security intelligence. It gives you real-time visual feedback on key
>> >>> security issues and trends.  Skip the complicated setup - simply
>> >>> import
>> >>> a virtual appliance and go from zero to informed in seconds.
>> >>>
>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>> _______________________________________________
>> >>> Csound-devel mailing list
>> >>> Csound-devel@lists.sourceforge.net
>> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>
>> >>
>> >>
>> >> ------------------------------------------------------------------------------
>> >> WatchGuard Dimension instantly turns raw network data into actionable
>> >> security intelligence. It gives you real-time visual feedback on key
>> >> security issues and trends.  Skip the complicated setup - simply import
>> >> a virtual appliance and go from zero to informed in seconds.
>> >>
>> >> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >> _______________________________________________
>> >> Csound-devel mailing list
>> >> Csound-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >
>> >
>> > ------------------------------------------------------------------------------
>> > WatchGuard Dimension instantly turns raw network data into actionable
>> > security intelligence. It gives you real-time visual feedback on key
>> > security issues and trends.  Skip the complicated setup - simply import
>> > a virtual appliance and go from zero to informed in seconds.
>> >
>> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > _______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:24
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
What's not good is that I'm busy for the rest of the day, I'll have to
get back to you tomorrow once I get some kind of memory checking
environment in place. What could have changed the cause this issue in
the windows build?

On 2 February 2014 12:26, Victor Lazzarini  wrote:
> Ok, that's good in away because we can isolate it in fgens.c.
> On 2 Feb 2014, at 12:18, Rory Walsh  wrote:
>
>> Same as before Victor:
>> ftable 1:       1024 points, scalemax 1.000
>>                              . - ' ' ' ' ' ' - . _
>>                        _ - '                       ' .
>>                    _ -                                 ' .
>>                  -                                         ' _
>>              . '                                               -
>>            -                                                     ' _
>>        _ '                                                           .
>>      .                                                                 -
>>    -                                                                     ' _
>> __'___________________________________________________________________________.
>> new alloc for instr 1:
>> B  0.000 ..  1.000 T  1.000 TT  1.000 M:  0.00000  0.00000
>> WARNING: replacing previous ftable 1
>> ftable 1:
>> Csound tidy up: Segmentation violation
>>
>> I'll try out dr.memory..
>>
>> On 2 February 2014 12:15, Michael Gogins  wrote:
>>> Valgrind not good on windows, use dr memory.
>>>
>>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>>>>
>>>> Ok, so what we might have here is the memory being used at some point by
>>>> another bit
>>>> of the program, possibly freed. Now that is what I was after when testing
>>>> with valgrind,
>>>> because it often does not segfault in some systems. However, valgrind
>>>> can't find a problem here.
>>>>
>>>> Can you try to  get valgrind in your machine? I see instructions in
>>>>
>>>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>>>
>>>> Victor
>>>>
>>>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>>>
>>>>> That was one of the things I tried last night. I think we can be
>>>>> certain it happens when trying to assign a value to fp[]. And I can
>>>>> confirm that it happens at the first attempt to write to fp, after a
>>>>> rewind score.
>>>>>
>>>>> On 2 February 2014 11:51, Victor Lazzarini 
>>>>> wrote:
>>>>>> We also want to isolate the segfault, make sure it's writing to fp[]
>>>>>> that is the problem, so
>>>>>> you could replace the expression on the rhs (with the sin call etc)
>>>>>> with a 0.0, and see what happens.
>>>>>> We don't want to be barking at the wrong tree.
>>>>>>
>>>>>> Victor
>>>>>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>>>>>
>>>>>>> It's 0x31f2dc0 each time.
>>>>>>>
>>>>>>>
>>>>>>> On 2 February 2014 11:35, Victor Lazzarini 
>>>>>>> wrote:
>>>>>>>> Can you place a breakpoint in the line before the crash and then
>>>>>>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>>>>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>>>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>>>>>>
>>>>>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>>>>>
>>>>>>>>> On 2 February 2014 00:40, Victor Lazzarini
>>>>>>>>>  wrote:
>>>>>>>>>> I ran under valgrind and that did not find any memory errors. So
>>>>>>>>>> it's impossible to tell what the
>>>>>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>>>>>
>>>>>>>>>> Victor
>>>>>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>>>>>>>>>  wrote:
>>>>>>>>>>
>>>>>>>>>>> I can't find out what sigrev means. Are you sure it's the name of
>>>>>>>>>>> the signal?
>>>>>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>>>>>>
>>>>>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>>>>>> causes a segrev..
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>>>>>> fp isn't right the second time through. I tried adding a
>>>>>>>>>>>>> if(fp!=NULL)
>>>>>>>>>>>>> test which it passes fine for the first run of gen10, on the
>>>>>>>>>>>>> second
>>>>>>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>>>>>>>>>>>> more
>>>>>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024
>>>>>>>>>>>>> the
>>>>>>>>>>>>> second time around. Can I add anything that will give you more
>>>>>>>>>>>>> info?
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>>>>>>>>>>>>> Can you run Csound in gdb and see whether it says
>>>>>>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>>>>>>>>>>>>> access violation or something?
>>>>>>>>>>>>>> It does not happen here.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>> 780
>>>>>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>> 259
>>>>>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>> 769
>>>>>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>> 946
>>>>>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>>>>>> 1617
>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Can you confirm that one only needs to disable release build
>>>>>>>>>>>>>>>>> in order
>>>>>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>>>>>>>>>>>>>>>> being so
>>>>>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>> The version has not changed (it only does after the
>>>>>>>>>>>>>>>>>> release).
>>>>>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>>>>>>>>>>>>>>>>> something else now.
>>>>>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>>>>>>>>>>>>>>>>>> steps from my
>>>>>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get
>>>>>>>>>>>>>>>>>>> this:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>>>>>>>>>>>>>>>>>>>> to date with
>>>>>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>>>>>>>>>>>>>>>>>>>> in the master
>>>>>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh 
>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2
>>>>>>>>>>>>>>>>>>>>>> keeps rewinding
>>>>>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>>>>>>>>>>>>>>>>>>>>> windows?
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>>>>>>>>>>>>>>>>>>>>>> to an end. i have
>>>>>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>>>>>>>>>>>>>>>>>>>>>> csound 5.19.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>>>>>>>>>>>>>>>>>>>>>>> latest code?
>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>>>>>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I
>>>>>>>>>>>>>>>>>>>>>>>>> have to do to
>>>>>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>>>>>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>>>>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>>>>>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying
>>>>>>>>>>>>>>>>>>>>>>>>>>>> around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>> actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>> key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>> import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>> actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>> key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>> import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>> actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>> key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>> import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>> actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>> import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>> import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>> import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>>
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:26
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Ok, that’s good in away because we can isolate it in fgens.c.
On 2 Feb 2014, at 12:18, Rory Walsh  wrote:

> Same as before Victor:
> ftable 1:       1024 points, scalemax 1.000
>                              . - ' ' ' ' ' ' - . _
>                        _ - '                       ' .
>                    _ -                                 ' .
>                  -                                         ' _
>              . '                                               -
>            -                                                     ' _
>        _ '                                                           .
>      .                                                                 -
>    -                                                                     ' _
> __'___________________________________________________________________________.
> new alloc for instr 1:
> B  0.000 ..  1.000 T  1.000 TT  1.000 M:  0.00000  0.00000
> WARNING: replacing previous ftable 1
> ftable 1:
> Csound tidy up: Segmentation violation
> 
> I'll try out dr.memory..
> 
> On 2 February 2014 12:15, Michael Gogins  wrote:
>> Valgrind not good on windows, use dr memory.
>> 
>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>>> 
>>> Ok, so what we might have here is the memory being used at some point by
>>> another bit
>>> of the program, possibly freed. Now that is what I was after when testing
>>> with valgrind,
>>> because it often does not segfault in some systems. However, valgrind
>>> can't find a problem here.
>>> 
>>> Can you try to  get valgrind in your machine? I see instructions in
>>> 
>>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>> 
>>> Victor
>>> 
>>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>> 
>>>> That was one of the things I tried last night. I think we can be
>>>> certain it happens when trying to assign a value to fp[]. And I can
>>>> confirm that it happens at the first attempt to write to fp, after a
>>>> rewind score.
>>>> 
>>>> On 2 February 2014 11:51, Victor Lazzarini 
>>>> wrote:
>>>>> We also want to isolate the segfault, make sure it's writing to fp[]
>>>>> that is the problem, so
>>>>> you could replace the expression on the rhs (with the sin call etc)
>>>>> with a 0.0, and see what happens.
>>>>> We don't want to be barking at the wrong tree.
>>>>> 
>>>>> Victor
>>>>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>>>> 
>>>>>> It's 0x31f2dc0 each time.
>>>>>> 
>>>>>> 
>>>>>> On 2 February 2014 11:35, Victor Lazzarini 
>>>>>> wrote:
>>>>>>> Can you place a breakpoint in the line before the crash and then
>>>>>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>>>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>>>> 
>>>>>>>> On 2 February 2014 00:40, Victor Lazzarini
>>>>>>>>  wrote:
>>>>>>>>> I ran under valgrind and that did not find any memory errors. So
>>>>>>>>> it's impossible to tell what the
>>>>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>>>> 
>>>>>>>>> Victor
>>>>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>>>>>>>>  wrote:
>>>>>>>>> 
>>>>>>>>>> I can't find out what sigrev means. Are you sure it's the name of
>>>>>>>>>> the signal?
>>>>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>>>>> causes a segrev..
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>>>>> fp isn't right the second time through. I tried adding a
>>>>>>>>>>>> if(fp!=NULL)
>>>>>>>>>>>> test which it passes fine for the first run of gen10, on the
>>>>>>>>>>>> second
>>>>>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>>>>>>>>>>> more
>>>>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024
>>>>>>>>>>>> the
>>>>>>>>>>>> second time around. Can I add anything that will give you more
>>>>>>>>>>>> info?
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>>>>>>>>>>>> Can you run Csound in gdb and see whether it says
>>>>>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>>>>>>>>>>>> access violation or something?
>>>>>>>>>>>>> It does not happen here.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>> 780
>>>>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>> 259
>>>>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>> 769
>>>>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>> 946
>>>>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>>>>> 1617
>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Can you confirm that one only needs to disable release build
>>>>>>>>>>>>>>>> in order
>>>>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>>>>>>>>>>>>>>> being so
>>>>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>> The version has not changed (it only does after the
>>>>>>>>>>>>>>>>> release).
>>>>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>>>>>>>>>>>>>>>> something else now.
>>>>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>>>>>>>>>>>>>>>>> steps from my
>>>>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get
>>>>>>>>>>>>>>>>>> this:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>>>>>>>>>>>>>>>>>>> to date with
>>>>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>>>>>>>>>>>>>>>>>>> in the master
>>>>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh 
>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2
>>>>>>>>>>>>>>>>>>>>> keeps rewinding
>>>>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>>>>>>>>>>>>>>>>>>>> windows?
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>>>>>>>>>>>>>>>>>>>>> to an end. i have
>>>>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>>>>>>>>>>>>>>>>>>>>> csound 5.19.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>>>>>>>>>>>>>>>>>>>>>> latest code?
>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>>>>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I
>>>>>>>>>>>>>>>>>>>>>>>> have to do to
>>>>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>>>>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>>>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>>>>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying
>>>>>>>>>>>>>>>>>>>>>>>>>>> around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>>>>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>>>>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem
>>>>>>>>>>>>>>>>>>>>>>>>>>>> from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>>>>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine,
>>>>>>>>>>>>>>>>>>>>>>>>>>>> but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>>>>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>>>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time
>>>>>>>>>>>>>>>>>>>>>>>>>>>> I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>>>>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>>>>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>>>>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>> actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>> on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>> simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>> actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>> key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>> import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> 
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>> actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>> key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>> import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> 
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>> actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>> key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>> import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> 
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>> actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>> import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> 
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>> import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> 
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>> import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> 
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> 
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> 
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 



------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:28
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Why is the ASCII printout only showing 1/2 the table?
On 2 Feb 2014, at 12:18, Rory Walsh  wrote:

> Same as before Victor:
> ftable 1:       1024 points, scalemax 1.000
>                              . - ' ' ' ' ' ' - . _
>                        _ - '                       ' .
>                    _ -                                 ' .
>                  -                                         ' _
>              . '                                               -
>            -                                                     ' _
>        _ '                                                           .
>      .                                                                 -
>    -                                                                     ' _
> __'___________________________________________________________________________.
> new alloc for instr 1:
> B  0.000 ..  1.000 T  1.000 TT  1.000 M:  0.00000  0.00000
> WARNING: replacing previous ftable 1
> ftable 1:
> Csound tidy up: Segmentation violation
> 
> I'll try out dr.memory..
> 
> On 2 February 2014 12:15, Michael Gogins  wrote:
>> Valgrind not good on windows, use dr memory.
>> 
>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>>> 
>>> Ok, so what we might have here is the memory being used at some point by
>>> another bit
>>> of the program, possibly freed. Now that is what I was after when testing
>>> with valgrind,
>>> because it often does not segfault in some systems. However, valgrind
>>> can't find a problem here.
>>> 
>>> Can you try to  get valgrind in your machine? I see instructions in
>>> 
>>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>> 
>>> Victor
>>> 
>>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>> 
>>>> That was one of the things I tried last night. I think we can be
>>>> certain it happens when trying to assign a value to fp[]. And I can
>>>> confirm that it happens at the first attempt to write to fp, after a
>>>> rewind score.
>>>> 
>>>> On 2 February 2014 11:51, Victor Lazzarini 
>>>> wrote:
>>>>> We also want to isolate the segfault, make sure it's writing to fp[]
>>>>> that is the problem, so
>>>>> you could replace the expression on the rhs (with the sin call etc)
>>>>> with a 0.0, and see what happens.
>>>>> We don't want to be barking at the wrong tree.
>>>>> 
>>>>> Victor
>>>>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>>>> 
>>>>>> It's 0x31f2dc0 each time.
>>>>>> 
>>>>>> 
>>>>>> On 2 February 2014 11:35, Victor Lazzarini 
>>>>>> wrote:
>>>>>>> Can you place a breakpoint in the line before the crash and then
>>>>>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>>>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>>>> 
>>>>>>>> On 2 February 2014 00:40, Victor Lazzarini
>>>>>>>>  wrote:
>>>>>>>>> I ran under valgrind and that did not find any memory errors. So
>>>>>>>>> it's impossible to tell what the
>>>>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>>>> 
>>>>>>>>> Victor
>>>>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>>>>>>>>  wrote:
>>>>>>>>> 
>>>>>>>>>> I can't find out what sigrev means. Are you sure it's the name of
>>>>>>>>>> the signal?
>>>>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>>>>> 
>>>>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>>>>> causes a segrev..
>>>>>>>>>>> 
>>>>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>>>>> fp isn't right the second time through. I tried adding a
>>>>>>>>>>>> if(fp!=NULL)
>>>>>>>>>>>> test which it passes fine for the first run of gen10, on the
>>>>>>>>>>>> second
>>>>>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>>>>>>>>>>> more
>>>>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024
>>>>>>>>>>>> the
>>>>>>>>>>>> second time around. Can I add anything that will give you more
>>>>>>>>>>>> info?
>>>>>>>>>>>> 
>>>>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>>>>>>>>>>>> Can you run Csound in gdb and see whether it says
>>>>>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>>>>>>>>>>>> access violation or something?
>>>>>>>>>>>>> It does not happen here.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>> 780
>>>>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>> 259
>>>>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>> 769
>>>>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>> 946
>>>>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>>>>> 1617
>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Can you confirm that one only needs to disable release build
>>>>>>>>>>>>>>>> in order
>>>>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>>>>>>>>>>>>>>> being so
>>>>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>> The version has not changed (it only does after the
>>>>>>>>>>>>>>>>> release).
>>>>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>>>>>>>>>>>>>>>> something else now.
>>>>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>>>>>>>>>>>>>>>>> steps from my
>>>>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get
>>>>>>>>>>>>>>>>>> this:
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>>>>>>>>>>>>>>>>>>> to date with
>>>>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>>>>>>>>>>>>>>>>>>> in the master
>>>>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh 
>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2
>>>>>>>>>>>>>>>>>>>>> keeps rewinding
>>>>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>>>>>>>>>>>>>>>>>>>> windows?
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>>>>>>>>>>>>>>>>>>>>> to an end. i have
>>>>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>>>>>>>>>>>>>>>>>>>>> csound 5.19.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>>>>>>>>>>>>>>>>>>>>>> latest code?
>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>>>>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I
>>>>>>>>>>>>>>>>>>>>>>>> have to do to
>>>>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>>>>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>>>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>>>>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying
>>>>>>>>>>>>>>>>>>>>>>>>>>> around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>>>>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>>>>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem
>>>>>>>>>>>>>>>>>>>>>>>>>>>> from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>>>>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine,
>>>>>>>>>>>>>>>>>>>>>>>>>>>> but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>>>>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>>>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time
>>>>>>>>>>>>>>>>>>>>>>>>>>>> I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>>>>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>>>>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>>>>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>> actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>> on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>> simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>> actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>> key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>> import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> 
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>> actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>> key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>> import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> 
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>> actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>> key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>> import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> 
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>> actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>> import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> 
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>> import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> 
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>> import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> 
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> 
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> 
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 



------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:29
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
No idea? My score looks like this:

f1 0 1024 10 1
f1 1 1024 10 1
i1 0 10

On 2 February 2014 12:28, Victor Lazzarini  wrote:
> Why is the ASCII printout only showing 1/2 the table?
> On 2 Feb 2014, at 12:18, Rory Walsh  wrote:
>
>> Same as before Victor:
>> ftable 1:       1024 points, scalemax 1.000
>>                              . - ' ' ' ' ' ' - . _
>>                        _ - '                       ' .
>>                    _ -                                 ' .
>>                  -                                         ' _
>>              . '                                               -
>>            -                                                     ' _
>>        _ '                                                           .
>>      .                                                                 -
>>    -                                                                     ' _
>> __'___________________________________________________________________________.
>> new alloc for instr 1:
>> B  0.000 ..  1.000 T  1.000 TT  1.000 M:  0.00000  0.00000
>> WARNING: replacing previous ftable 1
>> ftable 1:
>> Csound tidy up: Segmentation violation
>>
>> I'll try out dr.memory..
>>
>> On 2 February 2014 12:15, Michael Gogins  wrote:
>>> Valgrind not good on windows, use dr memory.
>>>
>>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>>>>
>>>> Ok, so what we might have here is the memory being used at some point by
>>>> another bit
>>>> of the program, possibly freed. Now that is what I was after when testing
>>>> with valgrind,
>>>> because it often does not segfault in some systems. However, valgrind
>>>> can't find a problem here.
>>>>
>>>> Can you try to  get valgrind in your machine? I see instructions in
>>>>
>>>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>>>
>>>> Victor
>>>>
>>>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>>>
>>>>> That was one of the things I tried last night. I think we can be
>>>>> certain it happens when trying to assign a value to fp[]. And I can
>>>>> confirm that it happens at the first attempt to write to fp, after a
>>>>> rewind score.
>>>>>
>>>>> On 2 February 2014 11:51, Victor Lazzarini 
>>>>> wrote:
>>>>>> We also want to isolate the segfault, make sure it's writing to fp[]
>>>>>> that is the problem, so
>>>>>> you could replace the expression on the rhs (with the sin call etc)
>>>>>> with a 0.0, and see what happens.
>>>>>> We don't want to be barking at the wrong tree.
>>>>>>
>>>>>> Victor
>>>>>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>>>>>
>>>>>>> It's 0x31f2dc0 each time.
>>>>>>>
>>>>>>>
>>>>>>> On 2 February 2014 11:35, Victor Lazzarini 
>>>>>>> wrote:
>>>>>>>> Can you place a breakpoint in the line before the crash and then
>>>>>>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>>>>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>>>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>>>>>>
>>>>>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>>>>>
>>>>>>>>> On 2 February 2014 00:40, Victor Lazzarini
>>>>>>>>>  wrote:
>>>>>>>>>> I ran under valgrind and that did not find any memory errors. So
>>>>>>>>>> it's impossible to tell what the
>>>>>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>>>>>
>>>>>>>>>> Victor
>>>>>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>>>>>>>>>  wrote:
>>>>>>>>>>
>>>>>>>>>>> I can't find out what sigrev means. Are you sure it's the name of
>>>>>>>>>>> the signal?
>>>>>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>>>>>>
>>>>>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>>>>>> causes a segrev..
>>>>>>>>>>>>
>>>>>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>>>>>> fp isn't right the second time through. I tried adding a
>>>>>>>>>>>>> if(fp!=NULL)
>>>>>>>>>>>>> test which it passes fine for the first run of gen10, on the
>>>>>>>>>>>>> second
>>>>>>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>>>>>>>>>>>> more
>>>>>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024
>>>>>>>>>>>>> the
>>>>>>>>>>>>> second time around. Can I add anything that will give you more
>>>>>>>>>>>>> info?
>>>>>>>>>>>>>
>>>>>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>>>>>>>>>>>>> Can you run Csound in gdb and see whether it says
>>>>>>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>>>>>>>>>>>>> access violation or something?
>>>>>>>>>>>>>> It does not happen here.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>> 780
>>>>>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>> 259
>>>>>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>> 769
>>>>>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>> 946
>>>>>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>>>>>> 1617
>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Can you confirm that one only needs to disable release build
>>>>>>>>>>>>>>>>> in order
>>>>>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>>>>>>>>>>>>>>>> being so
>>>>>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>> The version has not changed (it only does after the
>>>>>>>>>>>>>>>>>> release).
>>>>>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>>>>>>>>>>>>>>>>> something else now.
>>>>>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>>>>>>>>>>>>>>>>>> steps from my
>>>>>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get
>>>>>>>>>>>>>>>>>>> this:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>>>>>>>>>>>>>>>>>>>> to date with
>>>>>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>>>>>>>>>>>>>>>>>>>> in the master
>>>>>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh 
>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2
>>>>>>>>>>>>>>>>>>>>>> keeps rewinding
>>>>>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>>>>>>>>>>>>>>>>>>>>> windows?
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>>>>>>>>>>>>>>>>>>>>>> to an end. i have
>>>>>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>>>>>>>>>>>>>>>>>>>>>> csound 5.19.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>>>>>>>>>>>>>>>>>>>>>>> latest code?
>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>>>>>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I
>>>>>>>>>>>>>>>>>>>>>>>>> have to do to
>>>>>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>>>>>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>>>>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>>>>>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying
>>>>>>>>>>>>>>>>>>>>>>>>>>>> around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>> actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>> key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>> import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>> actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>> key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>> import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>> actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>> key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>> import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>> actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>> import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>> import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>> import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>>
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:41
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
That certainly looks wrong, but might be unrelated. 
One final thing, I did a diff and found this, the only change that might be relevant in fgens.c (line 169)

memcpy(&(ff.e.p[2]), &(evtblkp->p[2]), sizeof(MYFLT) * (PMAX-2));

was

memcpy(&(ff.e.p[2]), &(evtblkp->p[2]), sizeof(MYFLT) * (PMAX));

although the fix looks correct to me. Can you try reverting to the second line and
see if it makes any difference?

Victor
On 2 Feb 2014, at 12:29, Rory Walsh  wrote:

> No idea? My score looks like this:
> 
> f1 0 1024 10 1
> f1 1 1024 10 1
> i1 0 10
> 
> On 2 February 2014 12:28, Victor Lazzarini  wrote:
>> Why is the ASCII printout only showing 1/2 the table?
>> On 2 Feb 2014, at 12:18, Rory Walsh  wrote:
>> 
>>> Same as before Victor:
>>> ftable 1:       1024 points, scalemax 1.000
>>>                             . - ' ' ' ' ' ' - . _
>>>                       _ - '                       ' .
>>>                   _ -                                 ' .
>>>                 -                                         ' _
>>>             . '                                               -
>>>           -                                                     ' _
>>>       _ '                                                           .
>>>     .                                                                 -
>>>   -                                                                     ' _
>>> __'___________________________________________________________________________.
>>> new alloc for instr 1:
>>> B  0.000 ..  1.000 T  1.000 TT  1.000 M:  0.00000  0.00000
>>> WARNING: replacing previous ftable 1
>>> ftable 1:
>>> Csound tidy up: Segmentation violation
>>> 
>>> I'll try out dr.memory..
>>> 
>>> On 2 February 2014 12:15, Michael Gogins  wrote:
>>>> Valgrind not good on windows, use dr memory.
>>>> 
>>>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>>>>> 
>>>>> Ok, so what we might have here is the memory being used at some point by
>>>>> another bit
>>>>> of the program, possibly freed. Now that is what I was after when testing
>>>>> with valgrind,
>>>>> because it often does not segfault in some systems. However, valgrind
>>>>> can't find a problem here.
>>>>> 
>>>>> Can you try to  get valgrind in your machine? I see instructions in
>>>>> 
>>>>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>>>> 
>>>>> Victor
>>>>> 
>>>>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>>>> 
>>>>>> That was one of the things I tried last night. I think we can be
>>>>>> certain it happens when trying to assign a value to fp[]. And I can
>>>>>> confirm that it happens at the first attempt to write to fp, after a
>>>>>> rewind score.
>>>>>> 
>>>>>> On 2 February 2014 11:51, Victor Lazzarini 
>>>>>> wrote:
>>>>>>> We also want to isolate the segfault, make sure it's writing to fp[]
>>>>>>> that is the problem, so
>>>>>>> you could replace the expression on the rhs (with the sin call etc)
>>>>>>> with a 0.0, and see what happens.
>>>>>>> We don't want to be barking at the wrong tree.
>>>>>>> 
>>>>>>> Victor
>>>>>>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> It's 0x31f2dc0 each time.
>>>>>>>> 
>>>>>>>> 
>>>>>>>> On 2 February 2014 11:35, Victor Lazzarini 
>>>>>>>> wrote:
>>>>>>>>> Can you place a breakpoint in the line before the crash and then
>>>>>>>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>>>>>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>>>>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>>>>>>> 
>>>>>>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>>>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>>>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>>>>>> 
>>>>>>>>>> On 2 February 2014 00:40, Victor Lazzarini
>>>>>>>>>>  wrote:
>>>>>>>>>>> I ran under valgrind and that did not find any memory errors. So
>>>>>>>>>>> it's impossible to tell what the
>>>>>>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>>>>>> 
>>>>>>>>>>> Victor
>>>>>>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>>>>>>>>>>  wrote:
>>>>>>>>>>> 
>>>>>>>>>>>> I can't find out what sigrev means. Are you sure it's the name of
>>>>>>>>>>>> the signal?
>>>>>>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>>>>>>> causes a segrev..
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>>>>>>> fp isn't right the second time through. I tried adding a
>>>>>>>>>>>>>> if(fp!=NULL)
>>>>>>>>>>>>>> test which it passes fine for the first run of gen10, on the
>>>>>>>>>>>>>> second
>>>>>>>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>>>>>>>>>>>>> more
>>>>>>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024
>>>>>>>>>>>>>> the
>>>>>>>>>>>>>> second time around. Can I add anything that will give you more
>>>>>>>>>>>>>> info?
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>>>>>>>>>>>>>> Can you run Csound in gdb and see whether it says
>>>>>>>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>>>>>>>>>>>>>> access violation or something?
>>>>>>>>>>>>>>> It does not happen here.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>>> 780
>>>>>>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>>> 259
>>>>>>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>>> 769
>>>>>>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>>> 946
>>>>>>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>>>>>>> 1617
>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> Can you confirm that one only needs to disable release build
>>>>>>>>>>>>>>>>>> in order
>>>>>>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>>>>>>>>>>>>>>>>> being so
>>>>>>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>> The version has not changed (it only does after the
>>>>>>>>>>>>>>>>>>> release).
>>>>>>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>>>>>>>>>>>>>>>>>> something else now.
>>>>>>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>>>>>>>>>>>>>>>>>>> steps from my
>>>>>>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get
>>>>>>>>>>>>>>>>>>>> this:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>>>>>>>>>>>>>>>>>>>>> to date with
>>>>>>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>>>>>>>>>>>>>>>>>>>>> in the master
>>>>>>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh 
>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2
>>>>>>>>>>>>>>>>>>>>>>> keeps rewinding
>>>>>>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>>>>>>>>>>>>>>>>>>>>>> windows?
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>>>>>>>>>>>>>>>>>>>>>>> to an end. i have
>>>>>>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>>>>>>>>>>>>>>>>>>>>>>> csound 5.19.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>>>>>>>>>>>>>>>>>>>>>>>> latest code?
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>>>>>>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I
>>>>>>>>>>>>>>>>>>>>>>>>>> have to do to
>>>>>>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>>>>>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>>>>>>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>> actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>>> key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>>> import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>> actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>> key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>> import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> 
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>> actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>> key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>> import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> 
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>> actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>> import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> 
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>> import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> 
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>> import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> 
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> 
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> 
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>> 
>> 
>> 
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 



------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:44
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Same problem as before I'm afraid.


On 2 February 2014 12:41, Victor Lazzarini  wrote:
> That certainly looks wrong, but might be unrelated.
> One final thing, I did a diff and found this, the only change that might be relevant in fgens.c (line 169)
>
> memcpy(&(ff.e.p[2]), &(evtblkp->p[2]), sizeof(MYFLT) * (PMAX-2));
>
> was
>
> memcpy(&(ff.e.p[2]), &(evtblkp->p[2]), sizeof(MYFLT) * (PMAX));
>
> although the fix looks correct to me. Can you try reverting to the second line and
> see if it makes any difference?
>
> Victor
> On 2 Feb 2014, at 12:29, Rory Walsh  wrote:
>
>> No idea? My score looks like this:
>>
>> f1 0 1024 10 1
>> f1 1 1024 10 1
>> i1 0 10
>>
>> On 2 February 2014 12:28, Victor Lazzarini  wrote:
>>> Why is the ASCII printout only showing 1/2 the table?
>>> On 2 Feb 2014, at 12:18, Rory Walsh  wrote:
>>>
>>>> Same as before Victor:
>>>> ftable 1:       1024 points, scalemax 1.000
>>>>                             . - ' ' ' ' ' ' - . _
>>>>                       _ - '                       ' .
>>>>                   _ -                                 ' .
>>>>                 -                                         ' _
>>>>             . '                                               -
>>>>           -                                                     ' _
>>>>       _ '                                                           .
>>>>     .                                                                 -
>>>>   -                                                                     ' _
>>>> __'___________________________________________________________________________.
>>>> new alloc for instr 1:
>>>> B  0.000 ..  1.000 T  1.000 TT  1.000 M:  0.00000  0.00000
>>>> WARNING: replacing previous ftable 1
>>>> ftable 1:
>>>> Csound tidy up: Segmentation violation
>>>>
>>>> I'll try out dr.memory..
>>>>
>>>> On 2 February 2014 12:15, Michael Gogins  wrote:
>>>>> Valgrind not good on windows, use dr memory.
>>>>>
>>>>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>>>>>>
>>>>>> Ok, so what we might have here is the memory being used at some point by
>>>>>> another bit
>>>>>> of the program, possibly freed. Now that is what I was after when testing
>>>>>> with valgrind,
>>>>>> because it often does not segfault in some systems. However, valgrind
>>>>>> can't find a problem here.
>>>>>>
>>>>>> Can you try to  get valgrind in your machine? I see instructions in
>>>>>>
>>>>>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>>>>>
>>>>>> Victor
>>>>>>
>>>>>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>>>>>
>>>>>>> That was one of the things I tried last night. I think we can be
>>>>>>> certain it happens when trying to assign a value to fp[]. And I can
>>>>>>> confirm that it happens at the first attempt to write to fp, after a
>>>>>>> rewind score.
>>>>>>>
>>>>>>> On 2 February 2014 11:51, Victor Lazzarini 
>>>>>>> wrote:
>>>>>>>> We also want to isolate the segfault, make sure it's writing to fp[]
>>>>>>>> that is the problem, so
>>>>>>>> you could replace the expression on the rhs (with the sin call etc)
>>>>>>>> with a 0.0, and see what happens.
>>>>>>>> We don't want to be barking at the wrong tree.
>>>>>>>>
>>>>>>>> Victor
>>>>>>>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>>>>>>>
>>>>>>>>> It's 0x31f2dc0 each time.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On 2 February 2014 11:35, Victor Lazzarini 
>>>>>>>>> wrote:
>>>>>>>>>> Can you place a breakpoint in the line before the crash and then
>>>>>>>>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>>>>>>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>>>>>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>>>>>>>>
>>>>>>>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>>>>>>>>>>> soon as *fp is accessed the second time around. So I can't check the
>>>>>>>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>>>>>>>
>>>>>>>>>>> On 2 February 2014 00:40, Victor Lazzarini
>>>>>>>>>>>  wrote:
>>>>>>>>>>>> I ran under valgrind and that did not find any memory errors. So
>>>>>>>>>>>> it's impossible to tell what the
>>>>>>>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>>>>>>>
>>>>>>>>>>>> Victor
>>>>>>>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> I can't find out what sigrev means. Are you sure it's the name of
>>>>>>>>>>>>> the signal?
>>>>>>>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> I mean to say that it still passes the test but somehow *fp still
>>>>>>>>>>>>>> causes a segrev..
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>>>>>>>> fp isn't right the second time through. I tried adding a
>>>>>>>>>>>>>>> if(fp!=NULL)
>>>>>>>>>>>>>>> test which it passes fine for the first run of gen10, on the
>>>>>>>>>>>>>>> second
>>>>>>>>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>>>>>>>>>>>>>> more
>>>>>>>>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024
>>>>>>>>>>>>>>> the
>>>>>>>>>>>>>>> second time around. Can I add anything that will give you more
>>>>>>>>>>>>>>> info?
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>>>>>>>>>>>>>>> Can you run Csound in gdb and see whether it says
>>>>>>>>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>>>>>>>>>>>>>>> access violation or something?
>>>>>>>>>>>>>>>> It does not happen here.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>>>> 780
>>>>>>>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>>>> 259
>>>>>>>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>>>> 769
>>>>>>>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>>>> 946
>>>>>>>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>>>>>>>> 1617
>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Can you confirm that one only needs to disable release build
>>>>>>>>>>>>>>>>>>> in order
>>>>>>>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>>>>>>>>>>>>>>>>>> being so
>>>>>>>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>> The version has not changed (it only does after the
>>>>>>>>>>>>>>>>>>>> release).
>>>>>>>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>>>>>>>>>>>>>>>>>>> something else now.
>>>>>>>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>>>>>>>>>>>>>>>>>>>> steps from my
>>>>>>>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>>>>>>>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> What's the current version number? When i run Csound I get
>>>>>>>>>>>>>>>>>>>>> this:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>>>>>>>>>>>>>>>>>>>>>> to date with
>>>>>>>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>>>>>>>>>>>>>>>>>>>>>> in the master
>>>>>>>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh 
>>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2
>>>>>>>>>>>>>>>>>>>>>>>> keeps rewinding
>>>>>>>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>>>>>>>>>>>>>>>>>>>>>>> windows?
>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>>>>>>>>>>>>>>>>>>>>>>>> to an end. i have
>>>>>>>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>>>>>>>>>>>>>>>>>>>>>>>> csound 5.19.
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>>>>>>>>>>>>>>>>>>>>>>>>> latest code?
>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I
>>>>>>>>>>>>>>>>>>>>>>>>>>> have to do to
>>>>>>>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>>>> key
>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>>>> import
>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>> actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>>> key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>>> import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>> actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>> key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>> import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>> actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>> import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>> import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>> import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:53
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
I think that's definitely the best thing to check!

On 2 February 2014 12:55, Victor Lazzarini  wrote:
> Michael,
>
> can you confirm Rory's problems with your build?
>
> Thanks
>
> Victor
> On 2 Feb 2014, at 12:15, Michael Gogins  wrote:
>
>> Valgrind not good on windows, use dr memory.
>>
>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
>> Ok, so what we might have here is the memory being used at some point by another bit
>> of the program, possibly freed. Now that is what I was after when testing with valgrind,
>> because it often does not segfault in some systems. However, valgrind can't find a problem here.
>>
>> Can you try to  get valgrind in your machine? I see instructions in
>>
>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>
>> Victor
>>
>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>
>> > That was one of the things I tried last night. I think we can be
>> > certain it happens when trying to assign a value to fp[]. And I can
>> > confirm that it happens at the first attempt to write to fp, after a
>> > rewind score.
>> >
>> > On 2 February 2014 11:51, Victor Lazzarini  wrote:
>> >> We also want to isolate the segfault, make sure it's writing to fp[] that is the problem, so
>> >> you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
>> >> We don't want to be barking at the wrong tree.
>> >>
>> >> Victor
>> >> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>> >>
>> >>> It's 0x31f2dc0 each time.
>> >>>
>> >>>
>> >>> On 2 February 2014 11:35, Victor Lazzarini  wrote:
>> >>>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
>> >>>> The pointer needs to be the same, if it's not then it's wrong.
>> >>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>> >>>>
>> >>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
>> >>>>> soon as *fp is accessed the second time around. So I can't check the
>> >>>>> value of fp as it seg faults as soon as I step to the line.
>> >>>>>
>> >>>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
>> >>>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
>> >>>>>> problem is, but it looks like it's Windows-only.
>> >>>>>>
>> >>>>>> Victor
>> >>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
>> >>>>>>
>> >>>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
>> >>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>> >>>>>>>
>> >>>>>>>> I mean to say that it still passes the test but somehow *fp still
>> >>>>>>>> causes a segrev..
>> >>>>>>>>
>> >>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>> >>>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
>> >>>>>>>>> test which it passes fine for the first run of gen10, on the second
>> >>>>>>>>> run it gets through the test once, but then I get a sigrev, no more
>> >>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
>> >>>>>>>>> second time around. Can I add anything that will give you more info?
>> >>>>>>>>>
>> >>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
>> >>>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
>> >>>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
>> >>>>>>>>>> It does not happen here.
>> >>>>>>>>>>
>> >>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>> >>>>>>>>>>
>> >>>>>>>>>>> Great, now I can at least retrieve some info for you:
>> >>>>>>>>>>>
>> >>>>>>>>>>> 0  0x6c509690  gen10
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> >>>>>>>>>>> 780
>> >>>>>>>>>>> 1  0x6c507a71  hfgens
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> >>>>>>>>>>> 259
>> >>>>>>>>>>> 2  0x6c52286c  process_score_event
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> >>>>>>>>>>> 769
>> >>>>>>>>>>> 3  0x6c52317f  sensevents
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> >>>>>>>>>>> 946
>> >>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>> >>>>>>>>>>> 1617
>> >>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> >>>>>>>>>>> 351
>> >>>>>>>>>>>
>> >>>>>>>>>>>
>> >>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
>> >>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>> >>>>>>>>>>>>
>> >>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
>> >>>>>>>>>>>>
>> >>>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
>> >>>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
>> >>>>>>>>>>>>> vague?
>> >>>>>>>>>>>>>
>> >>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
>> >>>>>>>>>>>>>> The version has not changed (it only does after the release).
>> >>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
>> >>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>> Victor
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
>> >>>>>>>>>>>>>>> csound6.git dir:
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> git checkout develop
>> >>>>>>>>>>>>>>> git pull origin develop
>> >>>>>>>>>>>>>>> cd build
>> >>>>>>>>>>>>>>> make clean
>> >>>>>>>>>>>>>>> make
>> >>>>>>>>>>>>>>> csound test.csd
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> The problem remains.
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> new alloc for instr 1:
>> >>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
>> >>>>>>>>>>>>>>> new alloc for instr 2:
>> >>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
>> >>>>>>>>>>>>>>> SECTION 1:
>> >>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>> >>>>>>>>>>>>>>> ftable 1:
>> >>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
>> >>>>>>>>>>>>>>>> such a git.
>> >>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
>> >>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
>> >>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>> >>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
>> >>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
>> >>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
>> >>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
>> >>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> joachim
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>> >>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
>> >>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
>> >>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
>> >>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>> >>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> -odac0
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> sr = 44100
>> >>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>> >>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>> >>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> instr 1
>> >>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> instr 2
>> >>>>>>>>>>>>>>>>>>>>>> rewindscore
>> >>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>> >>>>>>>>>>>>>>>>>>>>>> i1 0 10
>> >>>>>>>>>>>>>>>>>>>>>> i2 2 1
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
>> >>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
>> >>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>> >>>>>>>>>>>>>>>>>>>>>>> origin develop
>> >>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>> >>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>> >>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
>> >>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> instr 2
>> >>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>> >>>>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> to check.
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> Victor
>> >>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
>> >>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
>> >>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
>> >>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
>> >>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
>> >>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
>> >>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
>> >>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>> >>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>> >>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>> >>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>> >>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>> >>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>> >>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> >>>>>>>>>>>>>>>>>>>>>>>>> 351
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>> >>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>> >>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>> >>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>> >>>>>>>>>>>>>>>>>>>>>>>>> endin
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>> >>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>> 
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
>> >>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
>> >>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
>> >>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
>> >>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
>> >>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
>> >>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>> >>>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>>
>> >>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>>
>> >>>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>>
>> >>>>>>>>>>>>
>> >>>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>>
>> >>>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>>> _______________________________________________
>> >>>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>>>
>> >>>>>>>>>>
>> >>>>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>>>> _______________________________________________
>> >>>>>>>>>> Csound-devel mailing list
>> >>>>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>>
>> >>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>>> _______________________________________________
>> >>>>>>>> Csound-devel mailing list
>> >>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>
>> >>>>>>>
>> >>>>>>> ------------------------------------------------------------------------------
>> >>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>>> _______________________________________________
>> >>>>>>> Csound-devel mailing list
>> >>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>
>> >>>>>>
>> >>>>>> ------------------------------------------------------------------------------
>> >>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>>> _______________________________________________
>> >>>>>> Csound-devel mailing list
>> >>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>
>> >>>>> ------------------------------------------------------------------------------
>> >>>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>>> security intelligence. It gives you real-time visual feedback on key
>> >>>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>>> a virtual appliance and go from zero to informed in seconds.
>> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>>> _______________________________________________
>> >>>>> Csound-devel mailing list
>> >>>>> Csound-devel@lists.sourceforge.net
>> >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>
>> >>>>
>> >>>> ------------------------------------------------------------------------------
>> >>>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>>> security intelligence. It gives you real-time visual feedback on key
>> >>>> security issues and trends.  Skip the complicated setup - simply import
>> >>>> a virtual appliance and go from zero to informed in seconds.
>> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>>> _______________________________________________
>> >>>> Csound-devel mailing list
>> >>>> Csound-devel@lists.sourceforge.net
>> >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>
>> >>> ------------------------------------------------------------------------------
>> >>> WatchGuard Dimension instantly turns raw network data into actionable
>> >>> security intelligence. It gives you real-time visual feedback on key
>> >>> security issues and trends.  Skip the complicated setup - simply import
>> >>> a virtual appliance and go from zero to informed in seconds.
>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >>> _______________________________________________
>> >>> Csound-devel mailing list
>> >>> Csound-devel@lists.sourceforge.net
>> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>
>> >>
>> >> ------------------------------------------------------------------------------
>> >> WatchGuard Dimension instantly turns raw network data into actionable
>> >> security intelligence. It gives you real-time visual feedback on key
>> >> security issues and trends.  Skip the complicated setup - simply import
>> >> a virtual appliance and go from zero to informed in seconds.
>> >> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> >> _______________________________________________
>> >> Csound-devel mailing list
>> >> Csound-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >
>> > ------------------------------------------------------------------------------
>> > WatchGuard Dimension instantly turns raw network data into actionable
>> > security intelligence. It gives you real-time visual feedback on key
>> > security issues and trends.  Skip the complicated setup - simply import
>> > a virtual appliance and go from zero to informed in seconds.
>> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > _______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk_______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 12:55
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Michael,

can you confirm Rory’s problems with your build?

Thanks

Victor
On 2 Feb 2014, at 12:15, Michael Gogins  wrote:

> Valgrind not good on windows, use dr memory.
> 
> On Feb 2, 2014 7:02 AM, "Victor Lazzarini"  wrote:
> Ok, so what we might have here is the memory being used at some point by another bit
> of the program, possibly freed. Now that is what I was after when testing with valgrind,
> because it often does not segfault in some systems. However, valgrind can’t find a problem here.
> 
> Can you try to  get valgrind in your machine? I see instructions in
> 
> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
> 
> Victor
> 
> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
> 
> > That was one of the things I tried last night. I think we can be
> > certain it happens when trying to assign a value to fp[]. And I can
> > confirm that it happens at the first attempt to write to fp, after a
> > rewind score.
> >
> > On 2 February 2014 11:51, Victor Lazzarini  wrote:
> >> We also want to isolate the segfault, make sure it's writing to fp[] that is the problem, so
> >> you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
> >> We don't want to be barking at the wrong tree.
> >>
> >> Victor
> >> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
> >>
> >>> It's 0x31f2dc0 each time.
> >>>
> >>>
> >>> On 2 February 2014 11:35, Victor Lazzarini  wrote:
> >>>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
> >>>> The pointer needs to be the same, if it's not then it's wrong.
> >>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
> >>>>
> >>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
> >>>>> soon as *fp is accessed the second time around. So I can't check the
> >>>>> value of fp as it seg faults as soon as I step to the line.
> >>>>>
> >>>>> On 2 February 2014 00:40, Victor Lazzarini  wrote:
> >>>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
> >>>>>> problem is, but it looks like it's Windows-only.
> >>>>>>
> >>>>>> Victor
> >>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini  wrote:
> >>>>>>
> >>>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
> >>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
> >>>>>>>
> >>>>>>>> I mean to say that it still passes the test but somehow *fp still
> >>>>>>>> causes a segrev..
> >>>>>>>>
> >>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
> >>>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
> >>>>>>>>> test which it passes fine for the first run of gen10, on the second
> >>>>>>>>> run it gets through the test once, but then I get a sigrev, no more
> >>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
> >>>>>>>>> second time around. Can I add anything that will give you more info?
> >>>>>>>>>
> >>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini  wrote:
> >>>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
> >>>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
> >>>>>>>>>> It does not happen here.
> >>>>>>>>>>
> >>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
> >>>>>>>>>>
> >>>>>>>>>>> Great, now I can at least retrieve some info for you:
> >>>>>>>>>>>
> >>>>>>>>>>> 0  0x6c509690  gen10
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
> >>>>>>>>>>> 780
> >>>>>>>>>>> 1  0x6c507a71  hfgens
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
> >>>>>>>>>>> 259
> >>>>>>>>>>> 2  0x6c52286c  process_score_event
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
> >>>>>>>>>>> 769
> >>>>>>>>>>> 3  0x6c52317f  sensevents
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
> >>>>>>>>>>> 946
> >>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
> >>>>>>>>>>> 1617
> >>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
> >>>>>>>>>>> 351
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini  wrote:
> >>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
> >>>>>>>>>>>>
> >>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh  wrote:
> >>>>>>>>>>>>
> >>>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
> >>>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
> >>>>>>>>>>>>> vague?
> >>>>>>>>>>>>>
> >>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini  wrote:
> >>>>>>>>>>>>>> The version has not changed (it only does after the release).
> >>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
> >>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>> Victor
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh  wrote:
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
> >>>>>>>>>>>>>>> csound6.git dir:
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> git checkout develop
> >>>>>>>>>>>>>>> git pull origin develop
> >>>>>>>>>>>>>>> cd build
> >>>>>>>>>>>>>>> make clean
> >>>>>>>>>>>>>>> make
> >>>>>>>>>>>>>>> csound test.csd
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> The problem remains.
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> new alloc for instr 1:
> >>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
> >>>>>>>>>>>>>>> new alloc for instr 2:
> >>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
> >>>>>>>>>>>>>>> SECTION 1:
> >>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
> >>>>>>>>>>>>>>> ftable 1:
> >>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini  wrote:
> >>>>>>>>>>>>>>>> such a git.
> >>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh  wrote:
> >>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
> >>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
> >>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
> >>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh  wrote:
> >>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
> >>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
> >>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz  wrote:
> >>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
> >>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>> joachim
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
> >>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
> >>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh  wrote:
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
> >>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
> >>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
> >>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh  wrote:
> >>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>> -odac0
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>> sr = 44100
> >>>>>>>>>>>>>>>>>>>>>> ksmps = 64
> >>>>>>>>>>>>>>>>>>>>>> nchnls = 2
> >>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> instr 1
> >>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> instr 2
> >>>>>>>>>>>>>>>>>>>>>> rewindscore
> >>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
> >>>>>>>>>>>>>>>>>>>>>> i1 0 10
> >>>>>>>>>>>>>>>>>>>>>> i2 2 1
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh  wrote:
> >>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
> >>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
> >>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
> >>>>>>>>>>>>>>>>>>>>>>> origin develop
> >>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
> >>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
> >>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini  wrote:
> >>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
> >>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> instr 2
> >>>>>>>>>>>>>>>>>>>>>>>> rewindscore
> >>>>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> to check.
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> Victor
> >>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh  wrote:
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
> >>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
> >>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
> >>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
> >>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
> >>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
> >>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
> >>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
> >>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
> >>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
> >>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
> >>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
> >>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
> >>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
> >>>>>>>>>>>>>>>>>>>>>>>>> 351
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
> >>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
> >>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
> >>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> instr 1
> >>>>>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
> >>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>> 
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh  wrote:
> >>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
> >>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
> >>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
> >>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
> >>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
> >>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>
> >>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>
> >>>>>>>>>>>>
> >>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>
> >>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>> _______________________________________________
> >>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>> _______________________________________________
> >>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>
> >>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>> _______________________________________________
> >>>>>>>> Csound-devel mailing list
> >>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>
> >>>>>>>
> >>>>>>> ------------------------------------------------------------------------------
> >>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>> _______________________________________________
> >>>>>>> Csound-devel mailing list
> >>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>
> >>>>>>
> >>>>>> ------------------------------------------------------------------------------
> >>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>> _______________________________________________
> >>>>>> Csound-devel mailing list
> >>>>>> Csound-devel@lists.sourceforge.net
> >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>
> >>>>> ------------------------------------------------------------------------------
> >>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>> _______________________________________________
> >>>>> Csound-devel mailing list
> >>>>> Csound-devel@lists.sourceforge.net
> >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>
> >>>>
> >>>> ------------------------------------------------------------------------------
> >>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>> security intelligence. It gives you real-time visual feedback on key
> >>>> security issues and trends.  Skip the complicated setup - simply import
> >>>> a virtual appliance and go from zero to informed in seconds.
> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>> _______________________________________________
> >>>> Csound-devel mailing list
> >>>> Csound-devel@lists.sourceforge.net
> >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>
> >>> ------------------------------------------------------------------------------
> >>> WatchGuard Dimension instantly turns raw network data into actionable
> >>> security intelligence. It gives you real-time visual feedback on key
> >>> security issues and trends.  Skip the complicated setup - simply import
> >>> a virtual appliance and go from zero to informed in seconds.
> >>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>> _______________________________________________
> >>> Csound-devel mailing list
> >>> Csound-devel@lists.sourceforge.net
> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>
> >>
> >> ------------------------------------------------------------------------------
> >> WatchGuard Dimension instantly turns raw network data into actionable
> >> security intelligence. It gives you real-time visual feedback on key
> >> security issues and trends.  Skip the complicated setup - simply import
> >> a virtual appliance and go from zero to informed in seconds.
> >> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >> _______________________________________________
> >> Csound-devel mailing list
> >> Csound-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >
> > ------------------------------------------------------------------------------
> > WatchGuard Dimension instantly turns raw network data into actionable
> > security intelligence. It gives you real-time visual feedback on key
> > security issues and trends.  Skip the complicated setup - simply import
> > a virtual appliance and go from zero to informed in seconds.
> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> > _______________________________________________
> > Csound-devel mailing list
> > Csound-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable 
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 13:51
Fromjpff
SubjectRe: [Cs-dev] latest devel for windows..
I may have missed it, but what does instr1 say?  Just an ocil or more?
==John


On Sat, 1 Feb 2014, Rory Walsh wrote:

> Cabbage gives a sigrev when using the latest version of Csound,
> downloaded an build today. Here's the backtrace:
>
> 0  0x6c509574  gen10
> 1  0x6c5079e2  hfgens
> 2  0x6c522044  process_score_event
> 3  0x6c522957  sensevents
> 4  0x6c664420  csoundPerformKsmps
>
> Any ideas?
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 14:22
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
instr 1
endin

On 2 February 2014 13:51, jpff  wrote:
> I may have missed it, but what does instr1 say?  Just an ocil or more?
> ==John
>
>
> On Sat, 1 Feb 2014, Rory Walsh wrote:
>
>> Cabbage gives a sigrev when using the latest version of Csound,
>> downloaded an build today. Here's the backtrace:
>>
>> 0  0x6c509574  gen10
>> 1  0x6c5079e2  hfgens
>> 2  0x6c522044  process_score_event
>> 3  0x6c522957  sensevents
>> 4  0x6c664420  csoundPerformKsmps
>>
>> Any ideas?
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-02 15:01
FromMichael Gogins
SubjectRe: [Cs-dev] latest devel for windows..
AttachmentsNone  None  
Yes, I will check this someone in the next few hours here.

Regards,
Mike


-----------------------------------------------------
Michael Gogins
Irreducible Productions
http://michaelgogins.tumblr.com
Michael dot Gogins at gmail dot com


On Sun, Feb 2, 2014 at 7:55 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
Michael,

can you confirm Rory’s problems with your build?

Thanks

Victor
On 2 Feb 2014, at 12:15, Michael Gogins <michael.gogins@gmail.com> wrote:

> Valgrind not good on windows, use dr memory.
>
> On Feb 2, 2014 7:02 AM, "Victor Lazzarini" <Victor.Lazzarini@nuim.ie> wrote:
> Ok, so what we might have here is the memory being used at some point by another bit
> of the program, possibly freed. Now that is what I was after when testing with valgrind,
> because it often does not segfault in some systems. However, valgrind can’t find a problem here.
>
> Can you try to  get valgrind in your machine? I see instructions in
>
> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>
> Victor
>
> On 2 Feb 2014, at 11:52, Rory Walsh <rorywalsh@ear.ie> wrote:
>
> > That was one of the things I tried last night. I think we can be
> > certain it happens when trying to assign a value to fp[]. And I can
> > confirm that it happens at the first attempt to write to fp, after a
> > rewind score.
> >
> > On 2 February 2014 11:51, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >> We also want to isolate the segfault, make sure it's writing to fp[] that is the problem, so
> >> you could replace the expression on the rhs (with the sin call etc) with a 0.0, and see what happens.
> >> We don't want to be barking at the wrong tree.
> >>
> >> Victor
> >> On 2 Feb 2014, at 11:39, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>
> >>> It's 0x31f2dc0 each time.
> >>>
> >>>
> >>> On 2 February 2014 11:35, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>> Can you place a breakpoint in the line before the crash and then check the value of fp (the pointer, not *fp the MYFLT value)?
> >>>> The pointer needs to be the same, if it's not then it's wrong.
> >>>> On 2 Feb 2014, at 10:57, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>
> >>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens as
> >>>>> soon as *fp is accessed the second time around. So I can't check the
> >>>>> value of fp as it seg faults as soon as I step to the line.
> >>>>>
> >>>>> On 2 February 2014 00:40, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>>>> I ran under valgrind and that did not find any memory errors. So it's impossible to tell what the
> >>>>>> problem is, but it looks like it's Windows-only.
> >>>>>>
> >>>>>> Victor
> >>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>>>>
> >>>>>>> I can't find out what sigrev means. Are you sure it's the name of the signal?
> >>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>
> >>>>>>>> I mean to say that it still passes the test but somehow *fp still
> >>>>>>>> causes a segrev..
> >>>>>>>>
> >>>>>>>> On 1 February 2014 23:31, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>> fp isn't right the second time through. I tried adding a  if(fp!=NULL)
> >>>>>>>>> test which it passes fine for the first run of gen10, on the second
> >>>>>>>>> run it gets through the test once, but then I get a sigrev, no more
> >>>>>>>>> info than that I'm afraid. I can also confirm that flen is 1024 the
> >>>>>>>>> second time around. Can I add anything that will give you more info?
> >>>>>>>>>
> >>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>>>>>>>> OK, I see that it's crashing when it tries to fill the table. Can you run Csound in gdb and see whether it says
> >>>>>>>>>> why it's crashing. Can you check whether there is a memory access violation or something?
> >>>>>>>>>> It does not happen here.
> >>>>>>>>>>
> >>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>
> >>>>>>>>>>> Great, now I can at least retrieve some info for you:
> >>>>>>>>>>>
> >>>>>>>>>>> 0  0x6c509690  gen10
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
> >>>>>>>>>>> 780
> >>>>>>>>>>> 1  0x6c507a71  hfgens
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
> >>>>>>>>>>> 259
> >>>>>>>>>>> 2  0x6c52286c  process_score_event
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
> >>>>>>>>>>> 769
> >>>>>>>>>>> 3  0x6c52317f  sensevents
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
> >>>>>>>>>>> 946
> >>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
> >>>>>>>>>>> 1617
> >>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
> >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
> >>>>>>>>>>> 351
> >>>>>>>>>>>
> >>>>>>>>>>>
> >>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
> >>>>>>>>>>>>
> >>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>
> >>>>>>>>>>>>> Can you confirm that one only needs to disable release build in order
> >>>>>>>>>>>>> to build the debug build? I can't understand why gdb is being so
> >>>>>>>>>>>>> vague?
> >>>>>>>>>>>>>
> >>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>>>>>>>>>>>> The version has not changed (it only does after the release).
> >>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely something else now.
> >>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>> Victor
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> It seems I'm still a git because after following these steps from my
> >>>>>>>>>>>>>>> csound6.git dir:
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> git checkout develop
> >>>>>>>>>>>>>>> git pull origin develop
> >>>>>>>>>>>>>>> cd build
> >>>>>>>>>>>>>>> make clean
> >>>>>>>>>>>>>>> make
> >>>>>>>>>>>>>>> csound test.csd
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> The problem remains.
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> new alloc for instr 1:
> >>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
> >>>>>>>>>>>>>>> new alloc for instr 2:
> >>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000  0.00000
> >>>>>>>>>>>>>>> SECTION 1:
> >>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
> >>>>>>>>>>>>>>> ftable 1:
> >>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> What's the current version number? When i run Csound I get this:
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>>>>>>>>>>>>>> such a git.
> >>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up to date with
> >>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still in the master
> >>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
> >>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument 2 keeps rewinding
> >>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on windows?
> >>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz <jh@joachimheintz.de> wrote:
> >>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come to an end. i have
> >>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with csound 5.19.
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>> joachim
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
> >>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the latest code?
> >>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from gdb, I have unchecked
> >>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all I have to do to
> >>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
> >>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> <CsoundSynthesizer>
> >>>>>>>>>>>>>>>>>>>>>> <CsOptions>
> >>>>>>>>>>>>>>>>>>>>>> -odac0
> >>>>>>>>>>>>>>>>>>>>>> </CsOptions>
> >>>>>>>>>>>>>>>>>>>>>> <CsInstruments>
> >>>>>>>>>>>>>>>>>>>>>> sr = 44100
> >>>>>>>>>>>>>>>>>>>>>> ksmps = 64
> >>>>>>>>>>>>>>>>>>>>>> nchnls = 2
> >>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> instr 1
> >>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> instr 2
> >>>>>>>>>>>>>>>>>>>>>> rewindscore
> >>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> </CsInstruments>
> >>>>>>>>>>>>>>>>>>>>>> <CsScore>
> >>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
> >>>>>>>>>>>>>>>>>>>>>> i1 0 10
> >>>>>>>>>>>>>>>>>>>>>> i2 2 1
> >>>>>>>>>>>>>>>>>>>>>> </CsScore>
> >>>>>>>>>>>>>>>>>>>>>> </CsoundSynthesizer>
> >>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the command line causes a
> >>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than before. I built fresh
> >>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
> >>>>>>>>>>>>>>>>>>>>>>> origin develop
> >>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
> >>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
> >>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> >>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code lying around (an old dll or something?).
> >>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the latest code.
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the command-line and adding a
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> instr 2
> >>>>>>>>>>>>>>>>>>>>>>>> rewindscore
> >>>>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> to check.
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> Victor
> >>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the problem from before regarding
> >>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code everything is fine. If I
> >>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also fine, but as soon as I call
> >>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get the error printed
> >>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from gdb than what's below,
> >>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every time I change gen routine
> >>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The output below is from an
> >>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
> >>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
> >>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
> >>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
> >>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
> >>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
> >>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
> >>>>>>>>>>>>>>>>>>>>>>>>> 351
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> <Cabbage>
> >>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"), pluginID("plu1")
> >>>>>>>>>>>>>>>>>>>>>>>>> </Cabbage>
> >>>>>>>>>>>>>>>>>>>>>>>>> <CsoundSynthesizer>
> >>>>>>>>>>>>>>>>>>>>>>>>> <CsOptions>
> >>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4 --midi-velocity-amp=5
> >>>>>>>>>>>>>>>>>>>>>>>>> </CsOptions>
> >>>>>>>>>>>>>>>>>>>>>>>>> <CsInstruments>
> >>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
> >>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
> >>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
> >>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> instr 1
> >>>>>>>>>>>>>>>>>>>>>>>>> endin
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> </CsInstruments>
> >>>>>>>>>>>>>>>>>>>>>>>>> <CsScore>
> >>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
> >>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
> >>>>>>>>>>>>>>>>>>>>>>>>> </CsScore>
> >>>>>>>>>>>>>>>>>>>>>>>>> </CsoundSynthesizer>
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh <rorywalsh@ear.ie> wrote:
> >>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that, but it seems that there
> >>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I usually copy the Csound dlls
> >>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there, but this is causing that
> >>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the Cabbage.exe and put it into the
> >>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be some conflicting libs
> >>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
> >>>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>>
> >>>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>>
> >>>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>>
> >>>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>>
> >>>>>>>>>>>>
> >>>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>>> _______________________________________________
> >>>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>>
> >>>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>>> _______________________________________________
> >>>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>>>
> >>>>>>>>>>
> >>>>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>>>> _______________________________________________
> >>>>>>>>>> Csound-devel mailing list
> >>>>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>>
> >>>>>>>> ------------------------------------------------------------------------------
> >>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>>> _______________________________________________
> >>>>>>>> Csound-devel mailing list
> >>>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>>
> >>>>>>>
> >>>>>>> ------------------------------------------------------------------------------
> >>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>>> _______________________________________________
> >>>>>>> Csound-devel mailing list
> >>>>>>> Csound-devel@lists.sourceforge.net
> >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>>
> >>>>>>
> >>>>>> ------------------------------------------------------------------------------
> >>>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>>> _______________________________________________
> >>>>>> Csound-devel mailing list
> >>>>>> Csound-devel@lists.sourceforge.net
> >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>>
> >>>>> ------------------------------------------------------------------------------
> >>>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>>> security intelligence. It gives you real-time visual feedback on key
> >>>>> security issues and trends.  Skip the complicated setup - simply import
> >>>>> a virtual appliance and go from zero to informed in seconds.
> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>>> _______________________________________________
> >>>>> Csound-devel mailing list
> >>>>> Csound-devel@lists.sourceforge.net
> >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>>
> >>>>
> >>>> ------------------------------------------------------------------------------
> >>>> WatchGuard Dimension instantly turns raw network data into actionable
> >>>> security intelligence. It gives you real-time visual feedback on key
> >>>> security issues and trends.  Skip the complicated setup - simply import
> >>>> a virtual appliance and go from zero to informed in seconds.
> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>>> _______________________________________________
> >>>> Csound-devel mailing list
> >>>> Csound-devel@lists.sourceforge.net
> >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>
> >>> ------------------------------------------------------------------------------
> >>> WatchGuard Dimension instantly turns raw network data into actionable
> >>> security intelligence. It gives you real-time visual feedback on key
> >>> security issues and trends.  Skip the complicated setup - simply import
> >>> a virtual appliance and go from zero to informed in seconds.
> >>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >>> _______________________________________________
> >>> Csound-devel mailing list
> >>> Csound-devel@lists.sourceforge.net
> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>
> >>
> >> ------------------------------------------------------------------------------
> >> WatchGuard Dimension instantly turns raw network data into actionable
> >> security intelligence. It gives you real-time visual feedback on key
> >> security issues and trends.  Skip the complicated setup - simply import
> >> a virtual appliance and go from zero to informed in seconds.
> >> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> >> _______________________________________________
> >> Csound-devel mailing list
> >> Csound-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >
> > ------------------------------------------------------------------------------
> > WatchGuard Dimension instantly turns raw network data into actionable
> > security intelligence. It gives you real-time visual feedback on key
> > security issues and trends.  Skip the complicated setup - simply import
> > a virtual appliance and go from zero to informed in seconds.
> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> > _______________________________________________
> > Csound-devel mailing list
> > Csound-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
WatchGuard Dimension instantly turns raw network data into actionable
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2014-02-03 11:34
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
I don't know if it helps but I managed to extract a little more info
from the debugger when Csound segfaults. I looked a dr.memory but it
seems one needs to compile with special flags in order to use it. I
think it still might be bes to see how Mike gets on with it.I also
tried another few gen routines, and it's always the same problem with
assigned values to fp as soon as an ftable is overwritten.

DEBUG>>*stopped,reason="signal-received",signal-name="SIGSEGV",signal-meaning="Segmentation
fault",frame={addr="0x6c5096be",func="gen10",args=[{name="ff",value="0x28be70"},{name="ftp",value="0x25a7820"}],file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},thread-id="1",stopped-threads="all"
Program Received signal SIGSEGV
DEBUG>>00002297-stack-list-frames 0 500
DEBUG>>00002298-file-list-exec-source-file
DEBUG>>00002299-break-list
DEBUG>>00002297^done,stack=[frame={level="0",addr="0x6c5096be",func="gen10",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},frame={level="1",addr="0x6c507a71",func="hfgens",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="259"},frame={level="2",addr="0x6c522860",func="process_score_event",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="769"},frame={level="3",addr="
 0x6c523173",func="sensevents",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="946"},frame={level="4",addr="0x6c66508e",func="csoundPerform",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",line="1716"},frame={level="5",addr="0x00401928",func="main",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",line="135"}]
DEBUG>>00002298^done,line="780",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",macro-info="0"
DEBUG>>00002300-stack-list-frames 0 500
DEBUG>>00002299^done,BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[]}
DEBUG>>00002301-data-disassemble -s "$pc -100" -e "$pc + 100" -- 0
DEBUG>>00002302-data-disassemble -s "$pc" -e "$pc + 1" -- 0
DEBUG>>00002300^done,stack=[frame={level="0",addr="0x6c5096be",func="gen10",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},frame={level="1",addr="0x6c507a71",func="hfgens",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="259"},frame={level="2",addr="0x6c522860",func="process_score_event",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="769"},frame={level="3",addr="
 0x6c523173",func="sensevents",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="946"},frame={level="4",addr="0x6c66508e",func="csoundPerform",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",line="1716"},frame={level="5",addr="0x00401928",func="main",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",line="135"}]
DEBUG>>00002301^done,asm_insns=[{address="0x6c50965a",func-name="gen10",offset="196",inst="sbb
   $0x8b,%al"},{address="0x6c50965c",func-name="gen10",offset="198",inst="inc
   %esp"},{address="0x6c50965d",func-name="gen10",offset="199",inst="and
   $0x1c,%al"},{address="0x6c50965f",func-name="gen10",offset="201",inst="movsd
 (%eax),%xmm0"},{address="0x6c509663",func-name="gen10",offset="205",inst="movsd
 %xmm0,0x10(%esp)"},{address="0x6c509669",func-name="gen10",offset="211",inst="xorpd
 %xmm0,%xmm0"},{address="0x6c50966d",func-name="gen10",offset="215",inst="comisd
0x10(%esp),%xmm0"},{address="0x6c509673",func-name="gen10",offset="221",inst="je
    0x6c5096e6 "},{address="0x6c509675",func-name="gen10",offset="223",inst="movl
  $0x0,0x3c(%esp)"},{address="0x6c50967d",func-name="gen10",offset="231",inst="mov
   0x54(%esp),%eax"},{address="0x6c509681",func-name="gen10",offset="235",inst="mov
   0x148(%eax),%eax"},{address="0x6c509687",func-name="gen10",offset="241",inst="mov
   %eax,0x34(%esp)"},{address="0x6c50968b",func-name="gen10",offset="245",inst="jmp
   0x6c5096dc "},{address="0x6c50968d",func-name="gen10",offset="247",inst="mov
   0x34(%esp),%ebx"},{address="0x6c509691",func-name="gen10",offset="251",inst="lea
   0x8(%ebx),%eax"},{address="0x6c509694",func-name="gen10",offset="254",inst="mov
   %eax,0x34(%esp)"},{address="0x6c509698",func-name="gen10",offset="258",inst="cvtsi2sdl
0x3c(%esp),%xmm0"},{address="0x6c50969e",func-name="gen10",offset="264",inst="mulsd
 0x28(%esp),%xmm0"},{address="0x6c5096a4",func-name="gen10",offset="270",inst="movsd
 %xmm0,(%esp)"},{address="0x6c5096a9",func-name="gen10",offset="275",inst="call
  0x6c7447f8 "},{address="0x6c5096ae",func-name="gen10",offset="280",inst="fstpl
 0x8(%esp)"},{address="0x6c5096b2",func-name="gen10",offset="284",inst="movsd
 0x8(%esp),%xmm0"},{address="0x6c5096b8",func-name="gen10",offset="290",inst="mulsd
 0x10(%esp),%xmm0"},{address="0x6c5096be",func-name="gen10",offset="296",inst="movsd
 %xmm0,(%ebx)"},{address="0x6c5096c2",func-name="gen10",offset="300",inst="mov
   0x38(%esp),%eax"},{address="0x6c5096c6",func-name="gen10",offset="304",inst="add
   %eax,0x3c(%esp)"},{address="0x6c5096ca",func-name="gen10",offset="308",inst="mov
   0x3c(%esp),%eax"},{address="0x6c5096ce",func-name="gen10",offset="312",inst="cltd
  "},{address="0x6c5096cf",func-name="gen10",offset="313",inst="idivl
0x30(%esp)"},{address="0x6c5096d3",func-name="gen10",offset="317",inst="mov
   %edx,0x3c(%esp)"},{address="0x6c5096d7",func-name="gen10",offset="321",inst="addl
  $0x8,0x34(%esp)"},{address="0x6c5096dc",func-name="gen10",offset="326",inst="mov
   0x34(%esp),%eax"},{address="0x6c5096e0",func-name="gen10",offset="330",inst="cmp
   0x20(%esp),%eax"},{address="0x6c5096e4",func-name="gen10",offset="334",inst="jbe
   0x6c50968d "},{address="0x6c5096e6",func-name="gen10",offset="336",inst="subl
  $0x1,0x38(%esp)"},{address="0x6c5096eb",func-name="gen10",offset="341",inst="cmpl
  $0x0,0x38(%esp)"},{address="0x6c5096f0",func-name="gen10",offset="346",inst="jne
   0x6c509617 "},{address="0x6c5096f6",func-name="gen10",offset="352",inst="mov
   $0x0,%eax"},{address="0x6c5096fb",func-name="gen10",offset="357",inst="add
   $0x48,%esp"},{address="0x6c5096fe",func-name="gen10",offset="360",inst="pop
   %ebx"},{address="0x6c5096ff",func-name="gen10",offset="361",inst="ret
   "},{address="0x6c509700",func-name="gen11",offset="0",inst="push
%ebx"},{address="0x6c509701",func-name="gen11",offset="1",inst="sub
$0xb8,%esp"},{address="0x6c509707",func-name="gen11",offset="7",inst="mov
   0xc0(%esp),%eax"},{address="0x6c50970e",func-name="gen11",offset="14",inst="movzwl
0x1e(%eax),%eax"},{address="0x6c509712",func-name="gen11",offset="18",inst="cwtl
  "},{address="0x6c509713",func-name="gen11",offset="19",inst="sub
$0x4,%eax"},{address="0x6c509716",func-name="gen11",offset="22",inst="mov
   %eax,0x90(%esp)"},{address="0x6c50971d",func-name="gen11",offset="29",inst="mov
   0xc0(%esp),%eax"}]
DEBUG>>00002302^done,asm_insns=[{address="0x6c5096be",func-name="gen10",offset="296",inst="movsd
 %xmm0,(%ebx)"}]

On 2 February 2014 15:01, Michael Gogins  wrote:
> Yes, I will check this someone in the next few hours here.
>
> Regards,
> Mike
>
>
> -----------------------------------------------------
> Michael Gogins
> Irreducible Productions
> http://michaelgogins.tumblr.com
> Michael dot Gogins at gmail dot com
>
>
> On Sun, Feb 2, 2014 at 7:55 AM, Victor Lazzarini 
> wrote:
>>
>> Michael,
>>
>> can you confirm Rory's problems with your build?
>>
>> Thanks
>>
>> Victor
>> On 2 Feb 2014, at 12:15, Michael Gogins  wrote:
>>
>> > Valgrind not good on windows, use dr memory.
>> >
>> > On Feb 2, 2014 7:02 AM, "Victor Lazzarini" 
>> > wrote:
>> > Ok, so what we might have here is the memory being used at some point by
>> > another bit
>> > of the program, possibly freed. Now that is what I was after when
>> > testing with valgrind,
>> > because it often does not segfault in some systems. However, valgrind
>> > can't find a problem here.
>> >
>> > Can you try to  get valgrind in your machine? I see instructions in
>> >
>> > http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>> >
>> > Victor
>> >
>> > On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>> >
>> > > That was one of the things I tried last night. I think we can be
>> > > certain it happens when trying to assign a value to fp[]. And I can
>> > > confirm that it happens at the first attempt to write to fp, after a
>> > > rewind score.
>> > >
>> > > On 2 February 2014 11:51, Victor Lazzarini 
>> > > wrote:
>> > >> We also want to isolate the segfault, make sure it's writing to fp[]
>> > >> that is the problem, so
>> > >> you could replace the expression on the rhs (with the sin call etc)
>> > >> with a 0.0, and see what happens.
>> > >> We don't want to be barking at the wrong tree.
>> > >>
>> > >> Victor
>> > >> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>> > >>
>> > >>> It's 0x31f2dc0 each time.
>> > >>>
>> > >>>
>> > >>> On 2 February 2014 11:35, Victor Lazzarini
>> > >>>  wrote:
>> > >>>> Can you place a breakpoint in the line before the crash and then
>> > >>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>> > >>>> The pointer needs to be the same, if it's not then it's wrong.
>> > >>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>> > >>>>
>> > >>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens
>> > >>>>> as
>> > >>>>> soon as *fp is accessed the second time around. So I can't check
>> > >>>>> the
>> > >>>>> value of fp as it seg faults as soon as I step to the line.
>> > >>>>>
>> > >>>>> On 2 February 2014 00:40, Victor Lazzarini
>> > >>>>>  wrote:
>> > >>>>>> I ran under valgrind and that did not find any memory errors. So
>> > >>>>>> it's impossible to tell what the
>> > >>>>>> problem is, but it looks like it's Windows-only.
>> > >>>>>>
>> > >>>>>> Victor
>> > >>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>> > >>>>>>  wrote:
>> > >>>>>>
>> > >>>>>>> I can't find out what sigrev means. Are you sure it's the name
>> > >>>>>>> of the signal?
>> > >>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>> > >>>>>>>
>> > >>>>>>>> I mean to say that it still passes the test but somehow *fp
>> > >>>>>>>> still
>> > >>>>>>>> causes a segrev..
>> > >>>>>>>>
>> > >>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>> > >>>>>>>>> fp isn't right the second time through. I tried adding a
>> > >>>>>>>>> if(fp!=NULL)
>> > >>>>>>>>> test which it passes fine for the first run of gen10, on the
>> > >>>>>>>>> second
>> > >>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>> > >>>>>>>>> more
>> > >>>>>>>>> info than that I'm afraid. I can also confirm that flen is
>> > >>>>>>>>> 1024 the
>> > >>>>>>>>> second time around. Can I add anything that will give you more
>> > >>>>>>>>> info?
>> > >>>>>>>>>
>> > >>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>> > >>>>>>>>>  wrote:
>> > >>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>> > >>>>>>>>>> Can you run Csound in gdb and see whether it says
>> > >>>>>>>>>> why it's crashing. Can you check whether there is a memory
>> > >>>>>>>>>> access violation or something?
>> > >>>>>>>>>> It does not happen here.
>> > >>>>>>>>>>
>> > >>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>> > >>>>>>>>>>
>> > >>>>>>>>>>> Great, now I can at least retrieve some info for you:
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> 0  0x6c509690  gen10
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> > >>>>>>>>>>> 780
>> > >>>>>>>>>>> 1  0x6c507a71  hfgens
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>> > >>>>>>>>>>> 259
>> > >>>>>>>>>>> 2  0x6c52286c  process_score_event
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> > >>>>>>>>>>> 769
>> > >>>>>>>>>>> 3  0x6c52317f  sensevents
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>> > >>>>>>>>>>> 946
>> > >>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>> > >>>>>>>>>>> 1617
>> > >>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> > >>>>>>>>>>> 351
>> > >>>>>>>>>>>
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>> > >>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>> > >>>>>>>>>>>>
>> > >>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh 
>> > >>>>>>>>>>>> wrote:
>> > >>>>>>>>>>>>
>> > >>>>>>>>>>>>> Can you confirm that one only needs to disable release
>> > >>>>>>>>>>>>> build in order
>> > >>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>> > >>>>>>>>>>>>> being so
>> > >>>>>>>>>>>>> vague?
>> > >>>>>>>>>>>>>
>> > >>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>> > >>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>> The version has not changed (it only does after the
>> > >>>>>>>>>>>>>> release).
>> > >>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>> > >>>>>>>>>>>>>> something else now.
>> > >>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>> > >>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>> Victor
>> > >>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>> > >>>>>>>>>>>>>> wrote:
>> > >>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> It seems I'm still a git because after following these
>> > >>>>>>>>>>>>>>> steps from my
>> > >>>>>>>>>>>>>>> csound6.git dir:
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> git checkout develop
>> > >>>>>>>>>>>>>>> git pull origin develop
>> > >>>>>>>>>>>>>>> cd build
>> > >>>>>>>>>>>>>>> make clean
>> > >>>>>>>>>>>>>>> make
>> > >>>>>>>>>>>>>>> csound test.csd
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> The problem remains.
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> new alloc for instr 1:
>> > >>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000
>> > >>>>>>>>>>>>>>> 0.00000
>> > >>>>>>>>>>>>>>> new alloc for instr 2:
>> > >>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000
>> > >>>>>>>>>>>>>>> 0.00000
>> > >>>>>>>>>>>>>>> SECTION 1:
>> > >>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>> > >>>>>>>>>>>>>>> ftable 1:
>> > >>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> What's the current version number? When i run Csound I
>> > >>>>>>>>>>>>>>> get this:
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>> > >>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>> such a git.
>> > >>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>> > >>>>>>>>>>>>>>>> wrote:
>> > >>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>> > >>>>>>>>>>>>>>>>> to date with
>> > >>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>> > >>>>>>>>>>>>>>>>> in the master
>> > >>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>> > >>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh
>> > >>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument
>> > >>>>>>>>>>>>>>>>>> 2 keeps rewinding
>> > >>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>> > >>>>>>>>>>>>>>>>>> windows?
>> > >>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>> > >>>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>> > >>>>>>>>>>>>>>>>>>> to an end. i have
>> > >>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>> > >>>>>>>>>>>>>>>>>>> csound 5.19.
>> > >>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>> joachim
>> > >>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>> > >>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>> > >>>>>>>>>>>>>>>>>>>> latest code?
>> > >>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>> > >>>>>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>> > >>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>> > >>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all
>> > >>>>>>>>>>>>>>>>>>>>> I have to do to
>> > >>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>> > >>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>> > >>>>>>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>> > >>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>> -odac0
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>> sr = 44100
>> > >>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>> > >>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>> > >>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>> > >>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>> instr 1
>> > >>>>>>>>>>>>>>>>>>>>>> endin
>> > >>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>> instr 2
>> > >>>>>>>>>>>>>>>>>>>>>> rewindscore
>> > >>>>>>>>>>>>>>>>>>>>>> endin
>> > >>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>> > >>>>>>>>>>>>>>>>>>>>>> i1 0 10
>> > >>>>>>>>>>>>>>>>>>>>>> i2 2 1
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>> > >>>>>>>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>> > >>>>>>>>>>>>>>>>>>>>>>> command line causes a
>> > >>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>> > >>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>> > >>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>> > >>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>> > >>>>>>>>>>>>>>>>>>>>>>> origin develop
>> > >>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>> > >>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>> > >>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>> > >>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>> > >>>>>>>>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code
>> > >>>>>>>>>>>>>>>>>>>>>>>> lying around (an old dll or something?).
>> > >>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>> > >>>>>>>>>>>>>>>>>>>>>>>> latest code.
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>> > >>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>> instr 2
>> > >>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>> > >>>>>>>>>>>>>>>>>>>>>>>> endin
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>> to check.
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>> Victor
>> > >>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>> > >>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the
>> > >>>>>>>>>>>>>>>>>>>>>>>>> problem from before regarding
>> > >>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>> > >>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>> > >>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also
>> > >>>>>>>>>>>>>>>>>>>>>>>>> fine, but as soon as I call
>> > >>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>> > >>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>> > >>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>> > >>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>> > >>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every
>> > >>>>>>>>>>>>>>>>>>>>>>>>> time I change gen routine
>> > >>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>> > >>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>> > >>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 351
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>> > >>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>> > >>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>> > >>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>> > >>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>> > >>>>>>>>>>>>>>>>>>>>>>>>> endin
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>> > >>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>> > >>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> usually copy the Csound dlls
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>> > >>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw
>> > >>>>>>>>>>>>>>>>>>>>>>>>> network data into actionable
>> > >>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>> > >>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>> > >>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>> > >>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>> > >>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to
>> > >>>>>>>>>>>>>>>>>>>>>>>>> informed in seconds.
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw
>> > >>>>>>>>>>>>>>>>>>>>>>>> network data into actionable
>> > >>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>> > >>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>> > >>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>> > >>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>> > >>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to
>> > >>>>>>>>>>>>>>>>>>>>>>>> informed in seconds.
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>> > >>>>>>>>>>>>>>>>>>>>> data into actionable
>> > >>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>> > >>>>>>>>>>>>>>>>>>>>> visual feedback on key
>> > >>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> > >>>>>>>>>>>>>>>>>>>>> setup - simply import
>> > >>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>> > >>>>>>>>>>>>>>>>>>>>> in seconds.
>> > >>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>> > >>>>>>>>>>>>>>>>>>>> data into actionable
>> > >>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>> > >>>>>>>>>>>>>>>>>>>> visual feedback on key
>> > >>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> > >>>>>>>>>>>>>>>>>>>> setup - simply import
>> > >>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>> > >>>>>>>>>>>>>>>>>>> data into actionable
>> > >>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>>>>>>>>>> feedback on key
>> > >>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> > >>>>>>>>>>>>>>>>>>> setup - simply import
>> > >>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> > >>>>>>>>>>>>>>>>> into actionable
>> > >>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>>>>>>>> feedback on key
>> > >>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>> > >>>>>>>>>>>>>>>>> setup - simply import
>> > >>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> > >>>>>>>>>>>>>>>> into actionable
>> > >>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>>>>>>> feedback on key
>> > >>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>> > >>>>>>>>>>>>>>>> - simply import
>> > >>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> > >>>>>>>>>>>>>>> into actionable
>> > >>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>>>>>> feedback on key
>> > >>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>> > >>>>>>>>>>>>>>> - simply import
>> > >>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>> > >>>>>>>>>>>>>> into actionable
>> > >>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>>>>> feedback on key
>> > >>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> > >>>>>>>>>>>>>> simply import
>> > >>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>>>
>> > >>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>>
>> > >>>>>>>>>>>>>
>> > >>>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>>>>>>>>>> actionable
>> > >>>>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>>>> feedback on key
>> > >>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> > >>>>>>>>>>>>> simply import
>> > >>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>>
>> > >>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>>
>> > >>>>>>>>>>>>
>> > >>>>>>>>>>>>
>> > >>>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>>>>>>>>> actionable
>> > >>>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>>> feedback on key
>> > >>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> > >>>>>>>>>>>> simply import
>> > >>>>>>>>>>>> a virtual appliance and go from zero to informed in
>> > >>>>>>>>>>>> seconds.
>> > >>>>>>>>>>>>
>> > >>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>>
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>>>>>>>> actionable
>> > >>>>>>>>>>> security intelligence. It gives you real-time visual
>> > >>>>>>>>>>> feedback on key
>> > >>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> > >>>>>>>>>>> simply import
>> > >>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> > >>>>>>>>>>>
>> > >>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>>> _______________________________________________
>> > >>>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>>>
>> > >>>>>>>>>>
>> > >>>>>>>>>>
>> > >>>>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>>>>>>> actionable
>> > >>>>>>>>>> security intelligence. It gives you real-time visual feedback
>> > >>>>>>>>>> on key
>> > >>>>>>>>>> security issues and trends.  Skip the complicated setup -
>> > >>>>>>>>>> simply import
>> > >>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> > >>>>>>>>>>
>> > >>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>>>> _______________________________________________
>> > >>>>>>>>>> Csound-devel mailing list
>> > >>>>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>>
>> > >>>>>>>>
>> > >>>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>>>>> actionable
>> > >>>>>>>> security intelligence. It gives you real-time visual feedback
>> > >>>>>>>> on key
>> > >>>>>>>> security issues and trends.  Skip the complicated setup -
>> > >>>>>>>> simply import
>> > >>>>>>>> a virtual appliance and go from zero to informed in seconds.
>> > >>>>>>>>
>> > >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>>> _______________________________________________
>> > >>>>>>>> Csound-devel mailing list
>> > >>>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>>
>> > >>>>>>>
>> > >>>>>>>
>> > >>>>>>> ------------------------------------------------------------------------------
>> > >>>>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>>>> actionable
>> > >>>>>>> security intelligence. It gives you real-time visual feedback on
>> > >>>>>>> key
>> > >>>>>>> security issues and trends.  Skip the complicated setup - simply
>> > >>>>>>> import
>> > >>>>>>> a virtual appliance and go from zero to informed in seconds.
>> > >>>>>>>
>> > >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>>> _______________________________________________
>> > >>>>>>> Csound-devel mailing list
>> > >>>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>>
>> > >>>>>>
>> > >>>>>>
>> > >>>>>> ------------------------------------------------------------------------------
>> > >>>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>>> actionable
>> > >>>>>> security intelligence. It gives you real-time visual feedback on
>> > >>>>>> key
>> > >>>>>> security issues and trends.  Skip the complicated setup - simply
>> > >>>>>> import
>> > >>>>>> a virtual appliance and go from zero to informed in seconds.
>> > >>>>>>
>> > >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>>> _______________________________________________
>> > >>>>>> Csound-devel mailing list
>> > >>>>>> Csound-devel@lists.sourceforge.net
>> > >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>>
>> > >>>>>
>> > >>>>> ------------------------------------------------------------------------------
>> > >>>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>>> actionable
>> > >>>>> security intelligence. It gives you real-time visual feedback on
>> > >>>>> key
>> > >>>>> security issues and trends.  Skip the complicated setup - simply
>> > >>>>> import
>> > >>>>> a virtual appliance and go from zero to informed in seconds.
>> > >>>>>
>> > >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>>> _______________________________________________
>> > >>>>> Csound-devel mailing list
>> > >>>>> Csound-devel@lists.sourceforge.net
>> > >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>>
>> > >>>>
>> > >>>>
>> > >>>> ------------------------------------------------------------------------------
>> > >>>> WatchGuard Dimension instantly turns raw network data into
>> > >>>> actionable
>> > >>>> security intelligence. It gives you real-time visual feedback on
>> > >>>> key
>> > >>>> security issues and trends.  Skip the complicated setup - simply
>> > >>>> import
>> > >>>> a virtual appliance and go from zero to informed in seconds.
>> > >>>>
>> > >>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>>> _______________________________________________
>> > >>>> Csound-devel mailing list
>> > >>>> Csound-devel@lists.sourceforge.net
>> > >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>>
>> > >>>
>> > >>> ------------------------------------------------------------------------------
>> > >>> WatchGuard Dimension instantly turns raw network data into
>> > >>> actionable
>> > >>> security intelligence. It gives you real-time visual feedback on key
>> > >>> security issues and trends.  Skip the complicated setup - simply
>> > >>> import
>> > >>> a virtual appliance and go from zero to informed in seconds.
>> > >>>
>> > >>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >>> _______________________________________________
>> > >>> Csound-devel mailing list
>> > >>> Csound-devel@lists.sourceforge.net
>> > >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >>
>> > >>
>> > >>
>> > >> ------------------------------------------------------------------------------
>> > >> WatchGuard Dimension instantly turns raw network data into actionable
>> > >> security intelligence. It gives you real-time visual feedback on key
>> > >> security issues and trends.  Skip the complicated setup - simply
>> > >> import
>> > >> a virtual appliance and go from zero to informed in seconds.
>> > >>
>> > >> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > >> _______________________________________________
>> > >> Csound-devel mailing list
>> > >> Csound-devel@lists.sourceforge.net
>> > >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> > >
>> > >
>> > > ------------------------------------------------------------------------------
>> > > WatchGuard Dimension instantly turns raw network data into actionable
>> > > security intelligence. It gives you real-time visual feedback on key
>> > > security issues and trends.  Skip the complicated setup - simply
>> > > import
>> > > a virtual appliance and go from zero to informed in seconds.
>> > >
>> > > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > > _______________________________________________
>> > > Csound-devel mailing list
>> > > Csound-devel@lists.sourceforge.net
>> > > https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >
>> >
>> >
>> > ------------------------------------------------------------------------------
>> > WatchGuard Dimension instantly turns raw network data into actionable
>> > security intelligence. It gives you real-time visual feedback on key
>> > security issues and trends.  Skip the complicated setup - simply import
>> > a virtual appliance and go from zero to informed in seconds.
>> >
>> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> > _______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >
>> > ------------------------------------------------------------------------------
>> > WatchGuard Dimension instantly turns raw network data into actionable
>> > security intelligence. It gives you real-time visual feedback on key
>> > security issues and trends.  Skip the complicated setup - simply import
>> > a virtual appliance and go from zero to informed in seconds.
>> >
>> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk_______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>
> ------------------------------------------------------------------------------
> WatchGuard Dimension instantly turns raw network data into actionable
> security intelligence. It gives you real-time visual feedback on key
> security issues and trends.  Skip the complicated setup - simply import
> a virtual appliance and go from zero to informed in seconds.
> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 11:36
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Attachmentsoutput.txt  None  None  
Here's the output in a file. The pasted code from above is not so easy
to read...

On 3 February 2014 11:34, Rory Walsh  wrote:
> I don't know if it helps but I managed to extract a little more info
> from the debugger when Csound segfaults. I looked a dr.memory but it
> seems one needs to compile with special flags in order to use it. I
> think it still might be bes to see how Mike gets on with it.I also
> tried another few gen routines, and it's always the same problem with
> assigned values to fp as soon as an ftable is overwritten.
>
> DEBUG>>*stopped,reason="signal-received",signal-name="SIGSEGV",signal-meaning="Segmentation
> fault",frame={addr="0x6c5096be",func="gen10",args=[{name="ff",value="0x28be70"},{name="ftp",value="0x25a7820"}],file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},thread-id="1",stopped-threads="all"
> Program Received signal SIGSEGV
> DEBUG>>00002297-stack-list-frames 0 500
> DEBUG>>00002298-file-list-exec-source-file
> DEBUG>>00002299-break-list
> DEBUG>>00002297^done,stack=[frame={level="0",addr="0x6c5096be",func="gen10",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},frame={level="1",addr="0x6c507a71",func="hfgens",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="259"},frame={level="2",addr="0x6c522860",func="process_score_event",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="769"},frame={level="3",addr="0x6c523173",func="sensevents",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="946"},frame={level="4",addr="0x6c66508e",func="csoundPerform",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",line="1716"},frame={level="5",addr="0x00401928",func="main",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",line="135"}]
> DEBUG>>00002298^done,line="780",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",macro-info="0"
> DEBUG>>00002300-stack-list-frames 0 500
> DEBUG>>00002299^done,BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[]}
> DEBUG>>00002301-data-disassemble -s "$pc -100" -e "$pc + 100" -- 0
> DEBUG>>00002302-data-disassemble -s "$pc" -e "$pc + 1" -- 0
> DEBUG>>00002300^done,stack=[frame={level="0",addr="0x6c5096be",func="gen10",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},frame={level="1",addr="0x6c507a71",func="hfgens",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="259"},frame={level="2",addr="0x6c522860",func="process_score_event",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="769"},frame={level="3",addr="0x6c523173",func="sensevents",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="946"},frame={level="4",addr="0x6c66508e",func="csoundPerform",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",line="1716"},frame={level="5",addr="0x00401928",func="main",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",line="135"}]
> DEBUG>>00002301^done,asm_insns=[{address="0x6c50965a",func-name="gen10",offset="196",inst="sbb
>    $0x8b,%al"},{address="0x6c50965c",func-name="gen10",offset="198",inst="inc
>    %esp"},{address="0x6c50965d",func-name="gen10",offset="199",inst="and
>    $0x1c,%al"},{address="0x6c50965f",func-name="gen10",offset="201",inst="movsd
>  (%eax),%xmm0"},{address="0x6c509663",func-name="gen10",offset="205",inst="movsd
>  %xmm0,0x10(%esp)"},{address="0x6c509669",func-name="gen10",offset="211",inst="xorpd
>  %xmm0,%xmm0"},{address="0x6c50966d",func-name="gen10",offset="215",inst="comisd
> 0x10(%esp),%xmm0"},{address="0x6c509673",func-name="gen10",offset="221",inst="je
>     0x6c5096e6 "},{address="0x6c509675",func-name="gen10",offset="223",inst="movl
>   $0x0,0x3c(%esp)"},{address="0x6c50967d",func-name="gen10",offset="231",inst="mov
>    0x54(%esp),%eax"},{address="0x6c509681",func-name="gen10",offset="235",inst="mov
>    0x148(%eax),%eax"},{address="0x6c509687",func-name="gen10",offset="241",inst="mov
>    %eax,0x34(%esp)"},{address="0x6c50968b",func-name="gen10",offset="245",inst="jmp
>    0x6c5096dc "},{address="0x6c50968d",func-name="gen10",offset="247",inst="mov
>    0x34(%esp),%ebx"},{address="0x6c509691",func-name="gen10",offset="251",inst="lea
>    0x8(%ebx),%eax"},{address="0x6c509694",func-name="gen10",offset="254",inst="mov
>    %eax,0x34(%esp)"},{address="0x6c509698",func-name="gen10",offset="258",inst="cvtsi2sdl
> 0x3c(%esp),%xmm0"},{address="0x6c50969e",func-name="gen10",offset="264",inst="mulsd
>  0x28(%esp),%xmm0"},{address="0x6c5096a4",func-name="gen10",offset="270",inst="movsd
>  %xmm0,(%esp)"},{address="0x6c5096a9",func-name="gen10",offset="275",inst="call
>   0x6c7447f8 "},{address="0x6c5096ae",func-name="gen10",offset="280",inst="fstpl
>  0x8(%esp)"},{address="0x6c5096b2",func-name="gen10",offset="284",inst="movsd
>  0x8(%esp),%xmm0"},{address="0x6c5096b8",func-name="gen10",offset="290",inst="mulsd
>  0x10(%esp),%xmm0"},{address="0x6c5096be",func-name="gen10",offset="296",inst="movsd
>  %xmm0,(%ebx)"},{address="0x6c5096c2",func-name="gen10",offset="300",inst="mov
>    0x38(%esp),%eax"},{address="0x6c5096c6",func-name="gen10",offset="304",inst="add
>    %eax,0x3c(%esp)"},{address="0x6c5096ca",func-name="gen10",offset="308",inst="mov
>    0x3c(%esp),%eax"},{address="0x6c5096ce",func-name="gen10",offset="312",inst="cltd
>   "},{address="0x6c5096cf",func-name="gen10",offset="313",inst="idivl
> 0x30(%esp)"},{address="0x6c5096d3",func-name="gen10",offset="317",inst="mov
>    %edx,0x3c(%esp)"},{address="0x6c5096d7",func-name="gen10",offset="321",inst="addl
>   $0x8,0x34(%esp)"},{address="0x6c5096dc",func-name="gen10",offset="326",inst="mov
>    0x34(%esp),%eax"},{address="0x6c5096e0",func-name="gen10",offset="330",inst="cmp
>    0x20(%esp),%eax"},{address="0x6c5096e4",func-name="gen10",offset="334",inst="jbe
>    0x6c50968d "},{address="0x6c5096e6",func-name="gen10",offset="336",inst="subl
>   $0x1,0x38(%esp)"},{address="0x6c5096eb",func-name="gen10",offset="341",inst="cmpl
>   $0x0,0x38(%esp)"},{address="0x6c5096f0",func-name="gen10",offset="346",inst="jne
>    0x6c509617 "},{address="0x6c5096f6",func-name="gen10",offset="352",inst="mov
>    $0x0,%eax"},{address="0x6c5096fb",func-name="gen10",offset="357",inst="add
>    $0x48,%esp"},{address="0x6c5096fe",func-name="gen10",offset="360",inst="pop
>    %ebx"},{address="0x6c5096ff",func-name="gen10",offset="361",inst="ret
>    "},{address="0x6c509700",func-name="gen11",offset="0",inst="push
> %ebx"},{address="0x6c509701",func-name="gen11",offset="1",inst="sub
> $0xb8,%esp"},{address="0x6c509707",func-name="gen11",offset="7",inst="mov
>    0xc0(%esp),%eax"},{address="0x6c50970e",func-name="gen11",offset="14",inst="movzwl
> 0x1e(%eax),%eax"},{address="0x6c509712",func-name="gen11",offset="18",inst="cwtl
>   "},{address="0x6c509713",func-name="gen11",offset="19",inst="sub
> $0x4,%eax"},{address="0x6c509716",func-name="gen11",offset="22",inst="mov
>    %eax,0x90(%esp)"},{address="0x6c50971d",func-name="gen11",offset="29",inst="mov
>    0xc0(%esp),%eax"}]
> DEBUG>>00002302^done,asm_insns=[{address="0x6c5096be",func-name="gen10",offset="296",inst="movsd
>  %xmm0,(%ebx)"}]
>
> On 2 February 2014 15:01, Michael Gogins  wrote:
>> Yes, I will check this someone in the next few hours here.
>>
>> Regards,
>> Mike
>>
>>
>> -----------------------------------------------------
>> Michael Gogins
>> Irreducible Productions
>> http://michaelgogins.tumblr.com
>> Michael dot Gogins at gmail dot com
>>
>>
>> On Sun, Feb 2, 2014 at 7:55 AM, Victor Lazzarini 
>> wrote:
>>>
>>> Michael,
>>>
>>> can you confirm Rory's problems with your build?
>>>
>>> Thanks
>>>
>>> Victor
>>> On 2 Feb 2014, at 12:15, Michael Gogins  wrote:
>>>
>>> > Valgrind not good on windows, use dr memory.
>>> >
>>> > On Feb 2, 2014 7:02 AM, "Victor Lazzarini" 
>>> > wrote:
>>> > Ok, so what we might have here is the memory being used at some point by
>>> > another bit
>>> > of the program, possibly freed. Now that is what I was after when
>>> > testing with valgrind,
>>> > because it often does not segfault in some systems. However, valgrind
>>> > can't find a problem here.
>>> >
>>> > Can you try to  get valgrind in your machine? I see instructions in
>>> >
>>> > http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>> >
>>> > Victor
>>> >
>>> > On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>> >
>>> > > That was one of the things I tried last night. I think we can be
>>> > > certain it happens when trying to assign a value to fp[]. And I can
>>> > > confirm that it happens at the first attempt to write to fp, after a
>>> > > rewind score.
>>> > >
>>> > > On 2 February 2014 11:51, Victor Lazzarini 
>>> > > wrote:
>>> > >> We also want to isolate the segfault, make sure it's writing to fp[]
>>> > >> that is the problem, so
>>> > >> you could replace the expression on the rhs (with the sin call etc)
>>> > >> with a 0.0, and see what happens.
>>> > >> We don't want to be barking at the wrong tree.
>>> > >>
>>> > >> Victor
>>> > >> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>> > >>
>>> > >>> It's 0x31f2dc0 each time.
>>> > >>>
>>> > >>>
>>> > >>> On 2 February 2014 11:35, Victor Lazzarini
>>> > >>>  wrote:
>>> > >>>> Can you place a breakpoint in the line before the crash and then
>>> > >>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>> > >>>> The pointer needs to be the same, if it's not then it's wrong.
>>> > >>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>> > >>>>
>>> > >>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens
>>> > >>>>> as
>>> > >>>>> soon as *fp is accessed the second time around. So I can't check
>>> > >>>>> the
>>> > >>>>> value of fp as it seg faults as soon as I step to the line.
>>> > >>>>>
>>> > >>>>> On 2 February 2014 00:40, Victor Lazzarini
>>> > >>>>>  wrote:
>>> > >>>>>> I ran under valgrind and that did not find any memory errors. So
>>> > >>>>>> it's impossible to tell what the
>>> > >>>>>> problem is, but it looks like it's Windows-only.
>>> > >>>>>>
>>> > >>>>>> Victor
>>> > >>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>> > >>>>>>  wrote:
>>> > >>>>>>
>>> > >>>>>>> I can't find out what sigrev means. Are you sure it's the name
>>> > >>>>>>> of the signal?
>>> > >>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>> > >>>>>>>
>>> > >>>>>>>> I mean to say that it still passes the test but somehow *fp
>>> > >>>>>>>> still
>>> > >>>>>>>> causes a segrev..
>>> > >>>>>>>>
>>> > >>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>> > >>>>>>>>> fp isn't right the second time through. I tried adding a
>>> > >>>>>>>>> if(fp!=NULL)
>>> > >>>>>>>>> test which it passes fine for the first run of gen10, on the
>>> > >>>>>>>>> second
>>> > >>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>> > >>>>>>>>> more
>>> > >>>>>>>>> info than that I'm afraid. I can also confirm that flen is
>>> > >>>>>>>>> 1024 the
>>> > >>>>>>>>> second time around. Can I add anything that will give you more
>>> > >>>>>>>>> info?
>>> > >>>>>>>>>
>>> > >>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>> > >>>>>>>>>  wrote:
>>> > >>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>> > >>>>>>>>>> Can you run Csound in gdb and see whether it says
>>> > >>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>> > >>>>>>>>>> access violation or something?
>>> > >>>>>>>>>> It does not happen here.
>>> > >>>>>>>>>>
>>> > >>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>> > >>>>>>>>>>
>>> > >>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> 0  0x6c509690  gen10
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>> > >>>>>>>>>>> 780
>>> > >>>>>>>>>>> 1  0x6c507a71  hfgens
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>> > >>>>>>>>>>> 259
>>> > >>>>>>>>>>> 2  0x6c52286c  process_score_event
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>> > >>>>>>>>>>> 769
>>> > >>>>>>>>>>> 3  0x6c52317f  sensevents
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>> > >>>>>>>>>>> 946
>>> > >>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>> > >>>>>>>>>>> 1617
>>> > >>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>> > >>>>>>>>>>> 351
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>> > >>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>> > >>>>>>>>>>>>
>>> > >>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh 
>>> > >>>>>>>>>>>> wrote:
>>> > >>>>>>>>>>>>
>>> > >>>>>>>>>>>>> Can you confirm that one only needs to disable release
>>> > >>>>>>>>>>>>> build in order
>>> > >>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>> > >>>>>>>>>>>>> being so
>>> > >>>>>>>>>>>>> vague?
>>> > >>>>>>>>>>>>>
>>> > >>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>> > >>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>> The version has not changed (it only does after the
>>> > >>>>>>>>>>>>>> release).
>>> > >>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>> > >>>>>>>>>>>>>> something else now.
>>> > >>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>> > >>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>> Victor
>>> > >>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>> > >>>>>>>>>>>>>> wrote:
>>> > >>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>> > >>>>>>>>>>>>>>> steps from my
>>> > >>>>>>>>>>>>>>> csound6.git dir:
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> git checkout develop
>>> > >>>>>>>>>>>>>>> git pull origin develop
>>> > >>>>>>>>>>>>>>> cd build
>>> > >>>>>>>>>>>>>>> make clean
>>> > >>>>>>>>>>>>>>> make
>>> > >>>>>>>>>>>>>>> csound test.csd
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> The problem remains.
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> new alloc for instr 1:
>>> > >>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000
>>> > >>>>>>>>>>>>>>> 0.00000
>>> > >>>>>>>>>>>>>>> new alloc for instr 2:
>>> > >>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000
>>> > >>>>>>>>>>>>>>> 0.00000
>>> > >>>>>>>>>>>>>>> SECTION 1:
>>> > >>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>> > >>>>>>>>>>>>>>> ftable 1:
>>> > >>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> What's the current version number? When i run Csound I
>>> > >>>>>>>>>>>>>>> get this:
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>> > >>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>> such a git.
>>> > >>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>> > >>>>>>>>>>>>>>>> wrote:
>>> > >>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>> > >>>>>>>>>>>>>>>>> to date with
>>> > >>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>> > >>>>>>>>>>>>>>>>> in the master
>>> > >>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>> > >>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh
>>> > >>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument
>>> > >>>>>>>>>>>>>>>>>> 2 keeps rewinding
>>> > >>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>> > >>>>>>>>>>>>>>>>>> windows?
>>> > >>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>> > >>>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>> > >>>>>>>>>>>>>>>>>>> to an end. i have
>>> > >>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>> > >>>>>>>>>>>>>>>>>>> csound 5.19.
>>> > >>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>> joachim
>>> > >>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>> > >>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>> > >>>>>>>>>>>>>>>>>>>> latest code?
>>> > >>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>> > >>>>>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>> > >>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>> > >>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all
>>> > >>>>>>>>>>>>>>>>>>>>> I have to do to
>>> > >>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>> > >>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>> > >>>>>>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>> > >>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>> -odac0
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>> > >>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>> > >>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>> > >>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>> > >>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>> instr 1
>>> > >>>>>>>>>>>>>>>>>>>>>> endin
>>> > >>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>> instr 2
>>> > >>>>>>>>>>>>>>>>>>>>>> rewindscore
>>> > >>>>>>>>>>>>>>>>>>>>>> endin
>>> > >>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>> > >>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>> > >>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>> > >>>>>>>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>> > >>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>> > >>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>> > >>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>> > >>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>> > >>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>> > >>>>>>>>>>>>>>>>>>>>>>> origin develop
>>> > >>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>> > >>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>> > >>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>> > >>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>> > >>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code
>>> > >>>>>>>>>>>>>>>>>>>>>>>> lying around (an old dll or something?).
>>> > >>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>> > >>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>> > >>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>> > >>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>> > >>>>>>>>>>>>>>>>>>>>>>>> endin
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>> to check.
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>> Victor
>>> > >>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>> > >>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> problem from before regarding
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> fine, but as soon as I call
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> time I change gen routine
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 351
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> endin
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> 
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> usually copy the Csound dlls
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> network data into actionable
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> informed in seconds.
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw
>>> > >>>>>>>>>>>>>>>>>>>>>>>> network data into actionable
>>> > >>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>> > >>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>> > >>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>> > >>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>> > >>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to
>>> > >>>>>>>>>>>>>>>>>>>>>>>> informed in seconds.
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>> > >>>>>>>>>>>>>>>>>>>>> data into actionable
>>> > >>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>> > >>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>> > >>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>> > >>>>>>>>>>>>>>>>>>>>> setup - simply import
>>> > >>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>> > >>>>>>>>>>>>>>>>>>>>> in seconds.
>>> > >>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>> > >>>>>>>>>>>>>>>>>>>> data into actionable
>>> > >>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>> > >>>>>>>>>>>>>>>>>>>> visual feedback on key
>>> > >>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>> > >>>>>>>>>>>>>>>>>>>> setup - simply import
>>> > >>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>> > >>>>>>>>>>>>>>>>>>> data into actionable
>>> > >>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>> > >>>>>>>>>>>>>>>>>>> setup - simply import
>>> > >>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>> > >>>>>>>>>>>>>>>>> into actionable
>>> > >>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>> > >>>>>>>>>>>>>>>>> setup - simply import
>>> > >>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>> > >>>>>>>>>>>>>>>> into actionable
>>> > >>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>> > >>>>>>>>>>>>>>>> - simply import
>>> > >>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>> > >>>>>>>>>>>>>>> into actionable
>>> > >>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>> > >>>>>>>>>>>>>>> - simply import
>>> > >>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>> > >>>>>>>>>>>>>> into actionable
>>> > >>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>> > >>>>>>>>>>>>>> simply import
>>> > >>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>>
>>> > >>>>>>>>>>>>>
>>> > >>>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>>>>>>>>>> actionable
>>> > >>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>> > >>>>>>>>>>>>> simply import
>>> > >>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>>
>>> > >>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>>
>>> > >>>>>>>>>>>>
>>> > >>>>>>>>>>>>
>>> > >>>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>>>>>>>>> actionable
>>> > >>>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>> > >>>>>>>>>>>> simply import
>>> > >>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>> > >>>>>>>>>>>> seconds.
>>> > >>>>>>>>>>>>
>>> > >>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>>>>>>>> actionable
>>> > >>>>>>>>>>> security intelligence. It gives you real-time visual
>>> > >>>>>>>>>>> feedback on key
>>> > >>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>> > >>>>>>>>>>> simply import
>>> > >>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>>>>>>>>>
>>> > >>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>>>
>>> > >>>>>>>>>>
>>> > >>>>>>>>>>
>>> > >>>>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>>>>>>> actionable
>>> > >>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>> > >>>>>>>>>> on key
>>> > >>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>> > >>>>>>>>>> simply import
>>> > >>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>>>>>>>>
>>> > >>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>>>> _______________________________________________
>>> > >>>>>>>>>> Csound-devel mailing list
>>> > >>>>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>>
>>> > >>>>>>>>
>>> > >>>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>>>>> actionable
>>> > >>>>>>>> security intelligence. It gives you real-time visual feedback
>>> > >>>>>>>> on key
>>> > >>>>>>>> security issues and trends.  Skip the complicated setup -
>>> > >>>>>>>> simply import
>>> > >>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>>>>>>
>>> > >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>>> _______________________________________________
>>> > >>>>>>>> Csound-devel mailing list
>>> > >>>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>>
>>> > >>>>>>>
>>> > >>>>>>>
>>> > >>>>>>> ------------------------------------------------------------------------------
>>> > >>>>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>>>> actionable
>>> > >>>>>>> security intelligence. It gives you real-time visual feedback on
>>> > >>>>>>> key
>>> > >>>>>>> security issues and trends.  Skip the complicated setup - simply
>>> > >>>>>>> import
>>> > >>>>>>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>>>>>
>>> > >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>>> _______________________________________________
>>> > >>>>>>> Csound-devel mailing list
>>> > >>>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>>
>>> > >>>>>>
>>> > >>>>>>
>>> > >>>>>> ------------------------------------------------------------------------------
>>> > >>>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>>> actionable
>>> > >>>>>> security intelligence. It gives you real-time visual feedback on
>>> > >>>>>> key
>>> > >>>>>> security issues and trends.  Skip the complicated setup - simply
>>> > >>>>>> import
>>> > >>>>>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>>>>
>>> > >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>>> _______________________________________________
>>> > >>>>>> Csound-devel mailing list
>>> > >>>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>>
>>> > >>>>>
>>> > >>>>> ------------------------------------------------------------------------------
>>> > >>>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>>> actionable
>>> > >>>>> security intelligence. It gives you real-time visual feedback on
>>> > >>>>> key
>>> > >>>>> security issues and trends.  Skip the complicated setup - simply
>>> > >>>>> import
>>> > >>>>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>>>
>>> > >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>>> _______________________________________________
>>> > >>>>> Csound-devel mailing list
>>> > >>>>> Csound-devel@lists.sourceforge.net
>>> > >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>>
>>> > >>>>
>>> > >>>>
>>> > >>>> ------------------------------------------------------------------------------
>>> > >>>> WatchGuard Dimension instantly turns raw network data into
>>> > >>>> actionable
>>> > >>>> security intelligence. It gives you real-time visual feedback on
>>> > >>>> key
>>> > >>>> security issues and trends.  Skip the complicated setup - simply
>>> > >>>> import
>>> > >>>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>>
>>> > >>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>>> _______________________________________________
>>> > >>>> Csound-devel mailing list
>>> > >>>> Csound-devel@lists.sourceforge.net
>>> > >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>>
>>> > >>>
>>> > >>> ------------------------------------------------------------------------------
>>> > >>> WatchGuard Dimension instantly turns raw network data into
>>> > >>> actionable
>>> > >>> security intelligence. It gives you real-time visual feedback on key
>>> > >>> security issues and trends.  Skip the complicated setup - simply
>>> > >>> import
>>> > >>> a virtual appliance and go from zero to informed in seconds.
>>> > >>>
>>> > >>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >>> _______________________________________________
>>> > >>> Csound-devel mailing list
>>> > >>> Csound-devel@lists.sourceforge.net
>>> > >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >>
>>> > >>
>>> > >>
>>> > >> ------------------------------------------------------------------------------
>>> > >> WatchGuard Dimension instantly turns raw network data into actionable
>>> > >> security intelligence. It gives you real-time visual feedback on key
>>> > >> security issues and trends.  Skip the complicated setup - simply
>>> > >> import
>>> > >> a virtual appliance and go from zero to informed in seconds.
>>> > >>
>>> > >> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > >> _______________________________________________
>>> > >> Csound-devel mailing list
>>> > >> Csound-devel@lists.sourceforge.net
>>> > >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> > >
>>> > >
>>> > > ------------------------------------------------------------------------------
>>> > > WatchGuard Dimension instantly turns raw network data into actionable
>>> > > security intelligence. It gives you real-time visual feedback on key
>>> > > security issues and trends.  Skip the complicated setup - simply
>>> > > import
>>> > > a virtual appliance and go from zero to informed in seconds.
>>> > >
>>> > > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > > _______________________________________________
>>> > > Csound-devel mailing list
>>> > > Csound-devel@lists.sourceforge.net
>>> > > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >
>>> >
>>> >
>>> > ------------------------------------------------------------------------------
>>> > WatchGuard Dimension instantly turns raw network data into actionable
>>> > security intelligence. It gives you real-time visual feedback on key
>>> > security issues and trends.  Skip the complicated setup - simply import
>>> > a virtual appliance and go from zero to informed in seconds.
>>> >
>>> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> > _______________________________________________
>>> > Csound-devel mailing list
>>> > Csound-devel@lists.sourceforge.net
>>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >
>>> > ------------------------------------------------------------------------------
>>> > WatchGuard Dimension instantly turns raw network data into actionable
>>> > security intelligence. It gives you real-time visual feedback on key
>>> > security issues and trends.  Skip the complicated setup - simply import
>>> > a virtual appliance and go from zero to informed in seconds.
>>> >
>>> > http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk_______________________________________________
>>> > Csound-devel mailing list
>>> > Csound-devel@lists.sourceforge.net
>>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>>
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>>
>> ------------------------------------------------------------------------------
>> WatchGuard Dimension instantly turns raw network data into actionable
>> security intelligence. It gives you real-time visual feedback on key
>> security issues and trends.  Skip the complicated setup - simply import
>> a virtual appliance and go from zero to informed in seconds.
>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>

Date2014-02-03 11:59
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
One thing you could do, if you have time is to modify this function in fgens.c, so that
it always allocate a new table. At the moment it checks if the size is bigger,
and if so then a new table is allocated. It would be interesting to see if it stops the segfault.

The relevant block is  if (ff->flen != (int32)ftp->flen) { … } else {…}. You can comment
the else block out, as well as the if condition check.

/* alloc ftable space for fno (or replace one) */
/*  set ftp to point to that structure         */

static CS_NOINLINE FUNC *ftalloc(const FGDATA *ff)
{
    CSOUND  *csound = ff->csound;
    FUNC    *ftp = csound->flist[ff->fno];

    if (UNLIKELY(ftp != NULL)) {
      csound->Warning(csound, Str("replacing previous ftable %d"), ff->fno);
      if (ff->flen != (int32)ftp->flen) {       /* if redraw & diff len, */
        mfree(csound, ftp->ftable);
        mfree(csound, (void*) ftp);             /*   release old space   */
        csound->flist[ff->fno] = ftp = NULL;
        if (csound->actanchor.nxtact != NULL) { /*   & chk for danger    */
          csound->Warning(csound, Str("ftable %d relocating due to size change"
                                      "\n         currently active instruments "
                                      "may find this disturbing"), ff->fno);
        }
      }
      else {
                                    /* else clear it to zero */
        memset((void*) ftp->ftable, 0, sizeof(MYFLT)*(ff->flen+1));
        memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving table! */
      }
    }
    if (ftp == NULL) {                      /*   alloc space as reqd */
      csound->flist[ff->fno] = ftp = (FUNC*) mcalloc(csound, sizeof(FUNC));
      ftp->ftable = (MYFLT*) mcalloc(csound, (1+ff->flen) * sizeof(MYFLT));
    }
    ftp->fno = (int32) ff->fno;
    ftp->flen = ff->flen;
    return ftp;
}



On 3 Feb 2014, at 11:36, Rory Walsh  wrote:

> Here's the output in a file. The pasted code from above is not so easy
> to read...
> 
> On 3 February 2014 11:34, Rory Walsh  wrote:
>> I don't know if it helps but I managed to extract a little more info
>> from the debugger when Csound segfaults. I looked a dr.memory but it
>> seems one needs to compile with special flags in order to use it. I
>> think it still might be bes to see how Mike gets on with it.I also
>> tried another few gen routines, and it's always the same problem with
>> assigned values to fp as soon as an ftable is overwritten.
>> 
>> DEBUG>>*stopped,reason="signal-received",signal-name="SIGSEGV",signal-meaning="Segmentation
>> fault",frame={addr="0x6c5096be",func="gen10",args=[{name="ff",value="0x28be70"},{name="ftp",value="0x25a7820"}],file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},thread-id="1",stopped-threads="all"
>> Program Received signal SIGSEGV
>> DEBUG>>00002297-stack-list-frames 0 500
>> DEBUG>>00002298-file-list-exec-source-file
>> DEBUG>>00002299-break-list
>> DEBUG>>00002297^done,stack=[frame={level="0",addr="0x6c5096be",func="gen10",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},frame={level="1",addr="0x6c507a71",func="hfgens",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="259"},frame={level="2",addr="0x6c522860",func="process_score_event",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="769"},frame={level="3",addr="0x6c523173",func="sensevents",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="946"},frame={level="4",addr="0x6c66508e",func="csoundPerform",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",line="1716"},frame={level="5",addr="0x00401928",func="main",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",line="135"}]
>> DEBUG>>00002298^done,line="780",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",macro-info="0"
>> DEBUG>>00002300-stack-list-frames 0 500
>> DEBUG>>00002299^done,BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[]}
>> DEBUG>>00002301-data-disassemble -s "$pc -100" -e "$pc + 100" -- 0
>> DEBUG>>00002302-data-disassemble -s "$pc" -e "$pc + 1" -- 0
>> DEBUG>>00002300^done,stack=[frame={level="0",addr="0x6c5096be",func="gen10",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="780"},frame={level="1",addr="0x6c507a71",func="hfgens",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c",line="259"},frame={level="2",addr="0x6c522860",func="process_score_event",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="769"},frame={level="3",addr="0x6c523173",func="sensevents",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c",line="946"},frame={level="4",addr="0x6c66508e",func="csoundPerform",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c",line="1716"},frame={level="5",addr="0x00401928",func="main",file="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",fullname="C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\frontends\\csound\\csound_main.c",line="135"}]
>> DEBUG>>00002301^done,asm_insns=[{address="0x6c50965a",func-name="gen10",offset="196",inst="sbb
>>   $0x8b,%al"},{address="0x6c50965c",func-name="gen10",offset="198",inst="inc
>>   %esp"},{address="0x6c50965d",func-name="gen10",offset="199",inst="and
>>   $0x1c,%al"},{address="0x6c50965f",func-name="gen10",offset="201",inst="movsd
>> (%eax),%xmm0"},{address="0x6c509663",func-name="gen10",offset="205",inst="movsd
>> %xmm0,0x10(%esp)"},{address="0x6c509669",func-name="gen10",offset="211",inst="xorpd
>> %xmm0,%xmm0"},{address="0x6c50966d",func-name="gen10",offset="215",inst="comisd
>> 0x10(%esp),%xmm0"},{address="0x6c509673",func-name="gen10",offset="221",inst="je
>>    0x6c5096e6 "},{address="0x6c509675",func-name="gen10",offset="223",inst="movl
>>  $0x0,0x3c(%esp)"},{address="0x6c50967d",func-name="gen10",offset="231",inst="mov
>>   0x54(%esp),%eax"},{address="0x6c509681",func-name="gen10",offset="235",inst="mov
>>   0x148(%eax),%eax"},{address="0x6c509687",func-name="gen10",offset="241",inst="mov
>>   %eax,0x34(%esp)"},{address="0x6c50968b",func-name="gen10",offset="245",inst="jmp
>>   0x6c5096dc "},{address="0x6c50968d",func-name="gen10",offset="247",inst="mov
>>   0x34(%esp),%ebx"},{address="0x6c509691",func-name="gen10",offset="251",inst="lea
>>   0x8(%ebx),%eax"},{address="0x6c509694",func-name="gen10",offset="254",inst="mov
>>   %eax,0x34(%esp)"},{address="0x6c509698",func-name="gen10",offset="258",inst="cvtsi2sdl
>> 0x3c(%esp),%xmm0"},{address="0x6c50969e",func-name="gen10",offset="264",inst="mulsd
>> 0x28(%esp),%xmm0"},{address="0x6c5096a4",func-name="gen10",offset="270",inst="movsd
>> %xmm0,(%esp)"},{address="0x6c5096a9",func-name="gen10",offset="275",inst="call
>>  0x6c7447f8 "},{address="0x6c5096ae",func-name="gen10",offset="280",inst="fstpl
>> 0x8(%esp)"},{address="0x6c5096b2",func-name="gen10",offset="284",inst="movsd
>> 0x8(%esp),%xmm0"},{address="0x6c5096b8",func-name="gen10",offset="290",inst="mulsd
>> 0x10(%esp),%xmm0"},{address="0x6c5096be",func-name="gen10",offset="296",inst="movsd
>> %xmm0,(%ebx)"},{address="0x6c5096c2",func-name="gen10",offset="300",inst="mov
>>   0x38(%esp),%eax"},{address="0x6c5096c6",func-name="gen10",offset="304",inst="add
>>   %eax,0x3c(%esp)"},{address="0x6c5096ca",func-name="gen10",offset="308",inst="mov
>>   0x3c(%esp),%eax"},{address="0x6c5096ce",func-name="gen10",offset="312",inst="cltd
>>  "},{address="0x6c5096cf",func-name="gen10",offset="313",inst="idivl
>> 0x30(%esp)"},{address="0x6c5096d3",func-name="gen10",offset="317",inst="mov
>>   %edx,0x3c(%esp)"},{address="0x6c5096d7",func-name="gen10",offset="321",inst="addl
>>  $0x8,0x34(%esp)"},{address="0x6c5096dc",func-name="gen10",offset="326",inst="mov
>>   0x34(%esp),%eax"},{address="0x6c5096e0",func-name="gen10",offset="330",inst="cmp
>>   0x20(%esp),%eax"},{address="0x6c5096e4",func-name="gen10",offset="334",inst="jbe
>>   0x6c50968d "},{address="0x6c5096e6",func-name="gen10",offset="336",inst="subl
>>  $0x1,0x38(%esp)"},{address="0x6c5096eb",func-name="gen10",offset="341",inst="cmpl
>>  $0x0,0x38(%esp)"},{address="0x6c5096f0",func-name="gen10",offset="346",inst="jne
>>   0x6c509617 "},{address="0x6c5096f6",func-name="gen10",offset="352",inst="mov
>>   $0x0,%eax"},{address="0x6c5096fb",func-name="gen10",offset="357",inst="add
>>   $0x48,%esp"},{address="0x6c5096fe",func-name="gen10",offset="360",inst="pop
>>   %ebx"},{address="0x6c5096ff",func-name="gen10",offset="361",inst="ret
>>   "},{address="0x6c509700",func-name="gen11",offset="0",inst="push
>> %ebx"},{address="0x6c509701",func-name="gen11",offset="1",inst="sub
>> $0xb8,%esp"},{address="0x6c509707",func-name="gen11",offset="7",inst="mov
>>   0xc0(%esp),%eax"},{address="0x6c50970e",func-name="gen11",offset="14",inst="movzwl
>> 0x1e(%eax),%eax"},{address="0x6c509712",func-name="gen11",offset="18",inst="cwtl
>>  "},{address="0x6c509713",func-name="gen11",offset="19",inst="sub
>> $0x4,%eax"},{address="0x6c509716",func-name="gen11",offset="22",inst="mov
>>   %eax,0x90(%esp)"},{address="0x6c50971d",func-name="gen11",offset="29",inst="mov
>>   0xc0(%esp),%eax"}]
>> DEBUG>>00002302^done,asm_insns=[{address="0x6c5096be",func-name="gen10",offset="296",inst="movsd
>> %xmm0,(%ebx)"}]
>> 
>> On 2 February 2014 15:01, Michael Gogins  wrote:
>>> Yes, I will check this someone in the next few hours here.
>>> 
>>> Regards,
>>> Mike
>>> 
>>> 
>>> -----------------------------------------------------
>>> Michael Gogins
>>> Irreducible Productions
>>> http://michaelgogins.tumblr.com
>>> Michael dot Gogins at gmail dot com
>>> 
>>> 
>>> On Sun, Feb 2, 2014 at 7:55 AM, Victor Lazzarini 
>>> wrote:
>>>> 
>>>> Michael,
>>>> 
>>>> can you confirm Rory's problems with your build?
>>>> 
>>>> Thanks
>>>> 
>>>> Victor
>>>> On 2 Feb 2014, at 12:15, Michael Gogins  wrote:
>>>> 
>>>>> Valgrind not good on windows, use dr memory.
>>>>> 
>>>>> On Feb 2, 2014 7:02 AM, "Victor Lazzarini" 
>>>>> wrote:
>>>>> Ok, so what we might have here is the memory being used at some point by
>>>>> another bit
>>>>> of the program, possibly freed. Now that is what I was after when
>>>>> testing with valgrind,
>>>>> because it often does not segfault in some systems. However, valgrind
>>>>> can't find a problem here.
>>>>> 
>>>>> Can you try to  get valgrind in your machine? I see instructions in
>>>>> 
>>>>> http://sourceforge.net/p/valgrind4win/wiki/DevelopmentEnvironment/
>>>>> 
>>>>> Victor
>>>>> 
>>>>> On 2 Feb 2014, at 11:52, Rory Walsh  wrote:
>>>>> 
>>>>>> That was one of the things I tried last night. I think we can be
>>>>>> certain it happens when trying to assign a value to fp[]. And I can
>>>>>> confirm that it happens at the first attempt to write to fp, after a
>>>>>> rewind score.
>>>>>> 
>>>>>> On 2 February 2014 11:51, Victor Lazzarini 
>>>>>> wrote:
>>>>>>> We also want to isolate the segfault, make sure it's writing to fp[]
>>>>>>> that is the problem, so
>>>>>>> you could replace the expression on the rhs (with the sin call etc)
>>>>>>> with a 0.0, and see what happens.
>>>>>>> We don't want to be barking at the wrong tree.
>>>>>>> 
>>>>>>> Victor
>>>>>>> On 2 Feb 2014, at 11:39, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> It's 0x31f2dc0 each time.
>>>>>>>> 
>>>>>>>> 
>>>>>>>> On 2 February 2014 11:35, Victor Lazzarini
>>>>>>>>  wrote:
>>>>>>>>> Can you place a breakpoint in the line before the crash and then
>>>>>>>>> check the value of fp (the pointer, not *fp the MYFLT value)?
>>>>>>>>> The pointer needs to be the same, if it's not then it's wrong.
>>>>>>>>> On 2 Feb 2014, at 10:57, Rory Walsh  wrote:
>>>>>>>>> 
>>>>>>>>>> Sorry Victor it's a sigsegv, a segmentatoin fault. And it happens
>>>>>>>>>> as
>>>>>>>>>> soon as *fp is accessed the second time around. So I can't check
>>>>>>>>>> the
>>>>>>>>>> value of fp as it seg faults as soon as I step to the line.
>>>>>>>>>> 
>>>>>>>>>> On 2 February 2014 00:40, Victor Lazzarini
>>>>>>>>>>  wrote:
>>>>>>>>>>> I ran under valgrind and that did not find any memory errors. So
>>>>>>>>>>> it's impossible to tell what the
>>>>>>>>>>> problem is, but it looks like it's Windows-only.
>>>>>>>>>>> 
>>>>>>>>>>> Victor
>>>>>>>>>>> On 2 Feb 2014, at 00:15, Victor Lazzarini
>>>>>>>>>>>  wrote:
>>>>>>>>>>> 
>>>>>>>>>>>> I can't find out what sigrev means. Are you sure it's the name
>>>>>>>>>>>> of the signal?
>>>>>>>>>>>> On 1 Feb 2014, at 23:37, Rory Walsh  wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> I mean to say that it still passes the test but somehow *fp
>>>>>>>>>>>>> still
>>>>>>>>>>>>> causes a segrev..
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 1 February 2014 23:31, Rory Walsh  wrote:
>>>>>>>>>>>>>> fp isn't right the second time through. I tried adding a
>>>>>>>>>>>>>> if(fp!=NULL)
>>>>>>>>>>>>>> test which it passes fine for the first run of gen10, on the
>>>>>>>>>>>>>> second
>>>>>>>>>>>>>> run it gets through the test once, but then I get a sigrev, no
>>>>>>>>>>>>>> more
>>>>>>>>>>>>>> info than that I'm afraid. I can also confirm that flen is
>>>>>>>>>>>>>> 1024 the
>>>>>>>>>>>>>> second time around. Can I add anything that will give you more
>>>>>>>>>>>>>> info?
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On 1 February 2014 23:09, Victor Lazzarini
>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>> OK, I see that it's crashing when it tries to fill the table.
>>>>>>>>>>>>>>> Can you run Csound in gdb and see whether it says
>>>>>>>>>>>>>>> why it's crashing. Can you check whether there is a memory
>>>>>>>>>>>>>>> access violation or something?
>>>>>>>>>>>>>>> It does not happen here.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 1 Feb 2014, at 22:07, Rory Walsh  wrote:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Great, now I can at least retrieve some info for you:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 0  0x6c509690  gen10
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>>> 780
>>>>>>>>>>>>>>>> 1  0x6c507a71  hfgens
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\fgens.c
>>>>>>>>>>>>>>>> 259
>>>>>>>>>>>>>>>> 2  0x6c52286c  process_score_event
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>>> 769
>>>>>>>>>>>>>>>> 3  0x6c52317f  sensevents
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Engine\\musmon.c
>>>>>>>>>>>>>>>> 946
>>>>>>>>>>>>>>>> 4  0x6c664d64  csoundPerformKsmps
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\Top\\csound.c
>>>>>>>>>>>>>>>> 1617
>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On 1 February 2014 21:58, Victor Lazzarini
>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>> set(CMAKE_BUILD_TYPE "Debug")
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:52, Rory Walsh 
>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> Can you confirm that one only needs to disable release
>>>>>>>>>>>>>>>>>> build in order
>>>>>>>>>>>>>>>>>> to build the debug build? I can't understand why gdb is
>>>>>>>>>>>>>>>>>> being so
>>>>>>>>>>>>>>>>>> vague?
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> On 1 February 2014 21:52, Victor Lazzarini
>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>> The version has not changed (it only does after the
>>>>>>>>>>>>>>>>>>> release).
>>>>>>>>>>>>>>>>>>> Actually, the previous code did not crash, so it's likely
>>>>>>>>>>>>>>>>>>> something else now.
>>>>>>>>>>>>>>>>>>> The trouble is that we can't reproduce the issue.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:31, Rory Walsh 
>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> It seems I'm still a git because after following these
>>>>>>>>>>>>>>>>>>>> steps from my
>>>>>>>>>>>>>>>>>>>> csound6.git dir:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> git checkout develop
>>>>>>>>>>>>>>>>>>>> git pull origin develop
>>>>>>>>>>>>>>>>>>>> cd build
>>>>>>>>>>>>>>>>>>>> make clean
>>>>>>>>>>>>>>>>>>>> make
>>>>>>>>>>>>>>>>>>>> csound test.csd
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> The problem remains.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> new alloc for instr 1:
>>>>>>>>>>>>>>>>>>>> B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000
>>>>>>>>>>>>>>>>>>>> 0.00000
>>>>>>>>>>>>>>>>>>>> new alloc for instr 2:
>>>>>>>>>>>>>>>>>>>> end of section 1         sect peak amps:  0.00000
>>>>>>>>>>>>>>>>>>>> 0.00000
>>>>>>>>>>>>>>>>>>>> SECTION 1:
>>>>>>>>>>>>>>>>>>>> WARNING: Cannot rewind MIDI score
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> WARNING: replacing previous ftable 1
>>>>>>>>>>>>>>>>>>>> ftable 1:
>>>>>>>>>>>>>>>>>>>> Csound tidy up: Segmentation violation
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> What's the current version number? When i run Csound I
>>>>>>>>>>>>>>>>>>>> get this:
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> Csound version 6.02.0 beta (double samples) Feb  1 2014
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:26, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>> such a git.
>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 21:10, Rory Walsh 
>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> Hold on everyone!! I just got gitted....it says I'm up
>>>>>>>>>>>>>>>>>>>>>> to date with
>>>>>>>>>>>>>>>>>>>>>> the devel branch but neglected to say that I was still
>>>>>>>>>>>>>>>>>>>>>> in the master
>>>>>>>>>>>>>>>>>>>>>> branch locally. Sincerest apologies for the noise.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:07, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>> It probably shouldn't ever finish because instrument
>>>>>>>>>>>>>>>>>>>>>>> 2 keeps rewinding
>>>>>>>>>>>>>>>>>>>>>>> the score? Are you running the latest git tip on
>>>>>>>>>>>>>>>>>>>>>>> windows?
>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 21:01, joachim heintz
>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>> for me, the example csd rory has given does not come
>>>>>>>>>>>>>>>>>>>>>>>> to an end. i have
>>>>>>>>>>>>>>>>>>>>>>>> to stop manually. but i get the same behaviour with
>>>>>>>>>>>>>>>>>>>>>>>> csound 5.19.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> joachim
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> Am 01.02.2014 21:54, schrieb Victor Lazzarini:
>>>>>>>>>>>>>>>>>>>>>>>>> it does not segfault here. You sure this is the
>>>>>>>>>>>>>>>>>>>>>>>>> latest code?
>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 20:36, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> It's frustrating that I can't get more info from
>>>>>>>>>>>>>>>>>>>>>>>>>> gdb, I have unchecked
>>>>>>>>>>>>>>>>>>>>>>>>>> the release build in my cmake options, is that all
>>>>>>>>>>>>>>>>>>>>>>>>>> I have to do to
>>>>>>>>>>>>>>>>>>>>>>>>>> specify a debug target? I see no option for debug?
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:20, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> The instrument I use to create the segfault:
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> -odac0
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>> i1 0 10
>>>>>>>>>>>>>>>>>>>>>>>>>>> i2 2 1
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 20:19, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Running the rewindscore instrument from the
>>>>>>>>>>>>>>>>>>>>>>>>>>>> command line causes a
>>>>>>>>>>>>>>>>>>>>>>>>>>>> segfault, and gdb gives me no more info than
>>>>>>>>>>>>>>>>>>>>>>>>>>>> before. I built fresh
>>>>>>>>>>>>>>>>>>>>>>>>>>>> today and running git pull gives this:
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\Users\Rory\Documents\SourceCode\cabbageaudio\csound6-git>git pull
>>>>>>>>>>>>>>>>>>>>>>>>>>>> origin develop
>>>>>>>>>>>>>>>>>>>>>>>>>>>> From git://git.code.sf.net/p/csound/csound6-git
>>>>>>>>>>>>>>>>>>>>>>>>>>>> * branch            develop    -> FETCH_HEAD
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Already up-to-date.
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:57, Victor Lazzarini
>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it be possible that you have old code
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> lying around (an old dll or something?).
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> I can rewind the score no problems with the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> latest code.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> You can try running the code below in the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> command-line and adding a
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> rewindscore
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> to check.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 Feb 2014, at 19:24, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Ok, this seems like a recurrence of the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> problem from before regarding
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tables, if I use a -1 on the oscili code
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> everything is fine. If I
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> never rewind the score everything is also
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> fine, but as soon as I call
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> performKsmps() after rewinding the score I get
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> the error printed
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> below. I can't really grab any more info from
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> gdb than what's below,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it's not giving out much info at all. Every
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> time I change gen routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it reports a problem in that gen routine. The
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> output below is from an
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instrument using gen07.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0  0x6c5087ca  gen07
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1  0x6c5079e2  hfgens
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2  0x6c522044  process_score_event
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 3  0x6c522957  sensevents
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4  0x6c664420  csoundPerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5  0x006de666  Csound::PerformKsmps
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C:\\Users\\Rory\\Documents\\SourceCode\\cabbageaudio\\csound6-git\\include\\csound.hpp
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 351
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> This is the instrument I'm using:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> form size(400, 300), caption("Untitled"),
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> pluginID("plu1")
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -n -d -+rtmidi=NULL -M0 --midi-key-cps=4
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> --midi-velocity-amp=5
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> sr = 44100
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ksmps = 64
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nchnls = 2
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 0dbfs=1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> instr 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> endin
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f1 0 1024 10 1
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> f0 3600
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On 1 February 2014 19:03, Rory Walsh
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GDB ain't giving me any more info than that,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but it seems that there
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> is something strange afoot at my end. I
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> usually copy the Csound dlls
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> into a Cabbage folder and run it from there,
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> but this is causing that
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> reported error. If however I grab the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Cabbage.exe and put it into the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound build dir it all works fine. Must be
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> some conflicting libs
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> around the place. I'll report back in a bit.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> network data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> complicated setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> informed in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed
>>>>>>>>>>>>>>>>>>>>>>>>>> in seconds.
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time
>>>>>>>>>>>>>>>>>>>>>>>>> visual feedback on key
>>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network
>>>>>>>>>>>>>>>>>>>>>>>> data into actionable
>>>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated
>>>>>>>>>>>>>>>>>>>>>> setup - simply import
>>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup
>>>>>>>>>>>>>>>>>>>> - simply import
>>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data
>>>>>>>>>>>>>>>>>>> into actionable
>>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in
>>>>>>>>>>>>>>>>> seconds.
>>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual
>>>>>>>>>>>>>>>> feedback on key
>>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>>>> actionable
>>>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>>>> on key
>>>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>>>> simply import
>>>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>>> actionable
>>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback
>>>>>>>>>>>>> on key
>>>>>>>>>>>>> security issues and trends.  Skip the complicated setup -
>>>>>>>>>>>>> simply import
>>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>>> actionable
>>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>>> key
>>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>>> import
>>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>>> 
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>>> actionable
>>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>>> key
>>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>>> import
>>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>>> 
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>>> actionable
>>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>>> key
>>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>>> import
>>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>>> 
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>>> actionable
>>>>>>>>> security intelligence. It gives you real-time visual feedback on
>>>>>>>>> key
>>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>>> import
>>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>>> 
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> WatchGuard Dimension instantly turns raw network data into
>>>>>>>> actionable
>>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>>> import
>>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>>> 
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>>> import
>>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>>> 
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>>> security issues and trends.  Skip the complicated setup - simply
>>>>>> import
>>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>>> 
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>>> security intelligence. It gives you real-time visual feedback on key
>>>>> security issues and trends.  Skip the complicated setup - simply import
>>>>> a virtual appliance and go from zero to informed in seconds.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk_______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> WatchGuard Dimension instantly turns raw network data into actionable
>>>> security intelligence. It gives you real-time visual feedback on key
>>>> security issues and trends.  Skip the complicated setup - simply import
>>>> a virtual appliance and go from zero to informed in seconds.
>>>> 
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> WatchGuard Dimension instantly turns raw network data into actionable
>>> security intelligence. It gives you real-time visual feedback on key
>>> security issues and trends.  Skip the complicated setup - simply import
>>> a virtual appliance and go from zero to informed in seconds.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=123612991&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk_______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 12:04
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Line 2295 seems to be the problem:
 memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving table! */
Commenting it out results in no segfaults.

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 12:39
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
One thing I can see now with a better debug environment is that
ftp->ftable is not the same each time. First time through it's ftable
0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
not catching that before. GDB from the command line is a nightmare.

On 3 February 2014 12:04, Rory Walsh  wrote:
> Line 2295 seems to be the problem:
>  memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving table! */
> Commenting it out results in no segfaults.

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 12:43
Fromjpff@cs.bath.ac.uk
SubjectRe: [Cs-dev] latest devel for windows..
AttachmentsNone  

Date2014-02-03 13:02
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
yes, I had discarded that as Rory had said that fp hadn’t changed. Now it’s clearer. 
I wonder if there is a header mismatch because that part of the code had changed
and the FGDATA structure is now different. If somehow the compiler is seeing an
old csoundCore.h, that could be the reason.

Rory, can you make sure there is only one csoundCore.h  in your system and that
is the latest one?

Victor
On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:

> Does not make sense to me but that information suggests that the  
> memset is clearing too much.
> ==John
> 
> Quoting Rory Walsh :
> 
>> One thing I can see now with a better debug environment is that
>> ftp->ftable is not the same each time. First time through it's ftable
>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>> not catching that before. GDB from the command line is a nightmare.
>> 
>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>> Line 2295 seems to be the problem:
>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving table! */
>>> Commenting it out results in no segfaults.
>> 
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> 
> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 13:03
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
I meant FUNC has changed, not FGDATA.

Victor
On 3 Feb 2014, at 13:02, Victor Lazzarini  wrote:

> yes, I had discarded that as Rory had said that fp hadn’t changed. Now it’s clearer. 
> I wonder if there is a header mismatch because that part of the code had changed
> and the FGDATA structure is now different. If somehow the compiler is seeing an
> old csoundCore.h, that could be the reason.
> 
> Rory, can you make sure there is only one csoundCore.h  in your system and that
> is the latest one?
> 
> Victor
> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
> 
>> Does not make sense to me but that information suggests that the  
>> memset is clearing too much.
>> ==John
>> 
>> Quoting Rory Walsh :
>> 
>>> One thing I can see now with a better debug environment is that
>>> ftp->ftable is not the same each time. First time through it's ftable
>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>> not catching that before. GDB from the command line is a nightmare.
>>> 
>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>> Line 2295 seems to be the problem:
>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving table! */
>>>> Commenting it out results in no segfaults.
>>> 
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> 
>> 
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 13:06
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
Also you could add this to check out the size of FUNC

csoundMessage(csound, “FUNC size= %d MYFLT* size = %d \n”, sizeof(FUNC), sizeof(MYFLT*));

Victor
On 3 Feb 2014, at 13:02, Victor Lazzarini  wrote:

> yes, I had discarded that as Rory had said that fp hadn’t changed. Now it’s clearer. 
> I wonder if there is a header mismatch because that part of the code had changed
> and the FGDATA structure is now different. If somehow the compiler is seeing an
> old csoundCore.h, that could be the reason.
> 
> Rory, can you make sure there is only one csoundCore.h  in your system and that
> is the latest one?
> 
> Victor
> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
> 
>> Does not make sense to me but that information suggests that the  
>> memset is clearing too much.
>> ==John
>> 
>> Quoting Rory Walsh :
>> 
>>> One thing I can see now with a better debug environment is that
>>> ftp->ftable is not the same each time. First time through it's ftable
>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>> not catching that before. GDB from the command line is a nightmare.
>>> 
>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>> Line 2295 seems to be the problem:
>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving table! */
>>>> Commenting it out results in no segfaults.
>>> 
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> 
>> 
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 13:46
FromMichael Gogins
SubjectRe: [Cs-dev] latest devel for windows..
AttachmentsNone  None  
I didn't have time to get to this yesterday, but I should be able to this evening.

Regards,
Mike


-----------------------------------------------------
Michael Gogins
Irreducible Productions
http://michaelgogins.tumblr.com
Michael dot Gogins at gmail dot com


On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
Also you could add this to check out the size of FUNC

csoundMessage(csound, “FUNC size= %d MYFLT* size = %d \n”, sizeof(FUNC), sizeof(MYFLT*));

Victor
On 3 Feb 2014, at 13:02, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:

> yes, I had discarded that as Rory had said that fp hadn’t changed. Now it’s clearer.
> I wonder if there is a header mismatch because that part of the code had changed
> and the FGDATA structure is now different. If somehow the compiler is seeing an
> old csoundCore.h, that could be the reason.
>
> Rory, can you make sure there is only one csoundCore.h  in your system and that
> is the latest one?
>
> Victor
> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>
>> Does not make sense to me but that information suggests that the
>> memset is clearing too much.
>> ==John
>>
>> Quoting Rory Walsh <rorywalsh@ear.ie>:
>>
>>> One thing I can see now with a better debug environment is that
>>> ftp->ftable is not the same each time. First time through it's ftable
>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>> not catching that before. GDB from the command line is a nightmare.
>>>
>>> On 3 February 2014 12:04, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>> Line 2295 seems to be the problem:
>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving table! */
>>>> Commenting it out results in no segfaults.
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2014-02-03 14:36
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
FUNC size is 336, and MYFLT size is 4 when it hits that.

On 3 February 2014 13:46, Michael Gogins  wrote:
> I didn't have time to get to this yesterday, but I should be able to this
> evening.
>
> Regards,
> Mike
>
>
> -----------------------------------------------------
> Michael Gogins
> Irreducible Productions
> http://michaelgogins.tumblr.com
> Michael dot Gogins at gmail dot com
>
>
> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini 
> wrote:
>>
>> Also you could add this to check out the size of FUNC
>>
>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n", sizeof(FUNC),
>> sizeof(MYFLT*));
>>
>> Victor
>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>> wrote:
>>
>> > yes, I had discarded that as Rory had said that fp hadn't changed. Now
>> > it's clearer.
>> > I wonder if there is a header mismatch because that part of the code had
>> > changed
>> > and the FGDATA structure is now different. If somehow the compiler is
>> > seeing an
>> > old csoundCore.h, that could be the reason.
>> >
>> > Rory, can you make sure there is only one csoundCore.h  in your system
>> > and that
>> > is the latest one?
>> >
>> > Victor
>> > On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>> >
>> >> Does not make sense to me but that information suggests that the
>> >> memset is clearing too much.
>> >> ==John
>> >>
>> >> Quoting Rory Walsh :
>> >>
>> >>> One thing I can see now with a better debug environment is that
>> >>> ftp->ftable is not the same each time. First time through it's ftable
>> >>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>> >>> not catching that before. GDB from the command line is a nightmare.
>> >>>
>> >>> On 3 February 2014 12:04, Rory Walsh  wrote:
>> >>>> Line 2295 seems to be the problem:
>> >>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>> >>>> table! */
>> >>>> Commenting it out results in no segfaults.
>> >>>
>> >>>
>> >>> ------------------------------------------------------------------------------
>> >>> Managing the Performance of Cloud-Based Applications
>> >>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> >>> Read the Whitepaper.
>> >>>
>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >>> _______________________________________________
>> >>> Csound-devel mailing list
>> >>> Csound-devel@lists.sourceforge.net
>> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> ------------------------------------------------------------------------------
>> >> Managing the Performance of Cloud-Based Applications
>> >> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> >> Read the Whitepaper.
>> >>
>> >> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >> _______________________________________________
>> >> Csound-devel mailing list
>> >> Csound-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >
>> >
>> >
>> > ------------------------------------------------------------------------------
>> > Managing the Performance of Cloud-Based Applications
>> > Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> > Read the Whitepaper.
>> >
>> > http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> > _______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 14:56
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
I guess there’s something fishy there. If MYFLT * is 4 bytes (32bit OS), FUNC should be smaller, because its
last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that’s why the field is getting zeroed.

Victor


On 3 Feb 2014, at 14:36, Rory Walsh  wrote:

> FUNC size is 336, and MYFLT size is 4 when it hits that.
> 
> On 3 February 2014 13:46, Michael Gogins  wrote:
>> I didn't have time to get to this yesterday, but I should be able to this
>> evening.
>> 
>> Regards,
>> Mike
>> 
>> 
>> -----------------------------------------------------
>> Michael Gogins
>> Irreducible Productions
>> http://michaelgogins.tumblr.com
>> Michael dot Gogins at gmail dot com
>> 
>> 
>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini 
>> wrote:
>>> 
>>> Also you could add this to check out the size of FUNC
>>> 
>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n", sizeof(FUNC),
>>> sizeof(MYFLT*));
>>> 
>>> Victor
>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>> wrote:
>>> 
>>>> yes, I had discarded that as Rory had said that fp hadn't changed. Now
>>>> it's clearer.
>>>> I wonder if there is a header mismatch because that part of the code had
>>>> changed
>>>> and the FGDATA structure is now different. If somehow the compiler is
>>>> seeing an
>>>> old csoundCore.h, that could be the reason.
>>>> 
>>>> Rory, can you make sure there is only one csoundCore.h  in your system
>>>> and that
>>>> is the latest one?
>>>> 
>>>> Victor
>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>> 
>>>>> Does not make sense to me but that information suggests that the
>>>>> memset is clearing too much.
>>>>> ==John
>>>>> 
>>>>> Quoting Rory Walsh :
>>>>> 
>>>>>> One thing I can see now with a better debug environment is that
>>>>>> ftp->ftable is not the same each time. First time through it's ftable
>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>>>>> not catching that before. GDB from the command line is a nightmare.
>>>>>> 
>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>> Line 2295 seems to be the problem:
>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>> table! */
>>>>>>> Commenting it out results in no segfaults.
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>> 
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>> 
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> 
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> 
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 14:58
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
I checked csoundCore and it's dated 2nd of Feb. I do have other Csound
dirs but none of them are in the path so I can't see how they could be
messing things up. .

On 3 February 2014 14:56, Victor Lazzarini  wrote:
> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit OS), FUNC should be smaller, because its
> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's why the field is getting zeroed.
>
> Victor
>
>
> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>
>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>
>> On 3 February 2014 13:46, Michael Gogins  wrote:
>>> I didn't have time to get to this yesterday, but I should be able to this
>>> evening.
>>>
>>> Regards,
>>> Mike
>>>
>>>
>>> -----------------------------------------------------
>>> Michael Gogins
>>> Irreducible Productions
>>> http://michaelgogins.tumblr.com
>>> Michael dot Gogins at gmail dot com
>>>
>>>
>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini 
>>> wrote:
>>>>
>>>> Also you could add this to check out the size of FUNC
>>>>
>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n", sizeof(FUNC),
>>>> sizeof(MYFLT*));
>>>>
>>>> Victor
>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>> wrote:
>>>>
>>>>> yes, I had discarded that as Rory had said that fp hadn't changed. Now
>>>>> it's clearer.
>>>>> I wonder if there is a header mismatch because that part of the code had
>>>>> changed
>>>>> and the FGDATA structure is now different. If somehow the compiler is
>>>>> seeing an
>>>>> old csoundCore.h, that could be the reason.
>>>>>
>>>>> Rory, can you make sure there is only one csoundCore.h  in your system
>>>>> and that
>>>>> is the latest one?
>>>>>
>>>>> Victor
>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>
>>>>>> Does not make sense to me but that information suggests that the
>>>>>> memset is clearing too much.
>>>>>> ==John
>>>>>>
>>>>>> Quoting Rory Walsh :
>>>>>>
>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>> ftp->ftable is not the same each time. First time through it's ftable
>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>>>>>> not catching that before. GDB from the command line is a nightmare.
>>>>>>>
>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>> table! */
>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>>
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>>
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 15:08
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
I think you are probably using the wrong csoundCore.h header. The old FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles Csound),
whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in 64bit).

And that difference will make memset clear more memory than it should. 

Victor
On 3 Feb 2014, at 14:56, Victor Lazzarini  wrote:

> I guess there’s something fishy there. If MYFLT * is 4 bytes (32bit OS), FUNC should be smaller, because its
> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that’s why the field is getting zeroed.
> 
> Victor
> 
> 
> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
> 
>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>> 
>> On 3 February 2014 13:46, Michael Gogins  wrote:
>>> I didn't have time to get to this yesterday, but I should be able to this
>>> evening.
>>> 
>>> Regards,
>>> Mike
>>> 
>>> 
>>> -----------------------------------------------------
>>> Michael Gogins
>>> Irreducible Productions
>>> http://michaelgogins.tumblr.com
>>> Michael dot Gogins at gmail dot com
>>> 
>>> 
>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini 
>>> wrote:
>>>> 
>>>> Also you could add this to check out the size of FUNC
>>>> 
>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n", sizeof(FUNC),
>>>> sizeof(MYFLT*));
>>>> 
>>>> Victor
>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>> wrote:
>>>> 
>>>>> yes, I had discarded that as Rory had said that fp hadn't changed. Now
>>>>> it's clearer.
>>>>> I wonder if there is a header mismatch because that part of the code had
>>>>> changed
>>>>> and the FGDATA structure is now different. If somehow the compiler is
>>>>> seeing an
>>>>> old csoundCore.h, that could be the reason.
>>>>> 
>>>>> Rory, can you make sure there is only one csoundCore.h  in your system
>>>>> and that
>>>>> is the latest one?
>>>>> 
>>>>> Victor
>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>> 
>>>>>> Does not make sense to me but that information suggests that the
>>>>>> memset is clearing too much.
>>>>>> ==John
>>>>>> 
>>>>>> Quoting Rory Walsh :
>>>>>> 
>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>> ftp->ftable is not the same each time. First time through it's ftable
>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>>>>>> not catching that before. GDB from the command line is a nightmare.
>>>>>>> 
>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>> table! */
>>>>>>>> Commenting it out results in no segfaults.
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>> 
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>> 
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>> 
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>> 
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 15:23
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
Mine has:
MYFLT   *ftable;
Btw, this is the csoundCore.h in the include folder yeah?

On 3 February 2014 15:08, Victor Lazzarini  wrote:
> I think you are probably using the wrong csoundCore.h header. The old FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles Csound),
> whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in 64bit).
>
> And that difference will make memset clear more memory than it should.
>
> Victor
> On 3 Feb 2014, at 14:56, Victor Lazzarini  wrote:
>
>> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit OS), FUNC should be smaller, because its
>> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's why the field is getting zeroed.
>>
>> Victor
>>
>>
>> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>>
>>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>
>>> On 3 February 2014 13:46, Michael Gogins  wrote:
>>>> I didn't have time to get to this yesterday, but I should be able to this
>>>> evening.
>>>>
>>>> Regards,
>>>> Mike
>>>>
>>>>
>>>> -----------------------------------------------------
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://michaelgogins.tumblr.com
>>>> Michael dot Gogins at gmail dot com
>>>>
>>>>
>>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini 
>>>> wrote:
>>>>>
>>>>> Also you could add this to check out the size of FUNC
>>>>>
>>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n", sizeof(FUNC),
>>>>> sizeof(MYFLT*));
>>>>>
>>>>> Victor
>>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>>> wrote:
>>>>>
>>>>>> yes, I had discarded that as Rory had said that fp hadn't changed. Now
>>>>>> it's clearer.
>>>>>> I wonder if there is a header mismatch because that part of the code had
>>>>>> changed
>>>>>> and the FGDATA structure is now different. If somehow the compiler is
>>>>>> seeing an
>>>>>> old csoundCore.h, that could be the reason.
>>>>>>
>>>>>> Rory, can you make sure there is only one csoundCore.h  in your system
>>>>>> and that
>>>>>> is the latest one?
>>>>>>
>>>>>> Victor
>>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>>
>>>>>>> Does not make sense to me but that information suggests that the
>>>>>>> memset is clearing too much.
>>>>>>> ==John
>>>>>>>
>>>>>>> Quoting Rory Walsh :
>>>>>>>
>>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>>> ftp->ftable is not the same each time. First time through it's ftable
>>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>>>>>>> not catching that before. GDB from the command line is a nightmare.
>>>>>>>>
>>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>>> table! */
>>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>> Read the Whitepaper.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>>
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 15:31
FromMichael Gogins
SubjectRe: [Cs-dev] latest devel for windows..
AttachmentsNone  None  
The only csoundCore.h that you see should be in the include folder. If you find another one you should delete it.

Regards,
Mike


-----------------------------------------------------
Michael Gogins
Irreducible Productions
http://michaelgogins.tumblr.com
Michael dot Gogins at gmail dot com


On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh <rorywalsh@ear.ie> wrote:
Mine has:
MYFLT   *ftable;
Btw, this is the csoundCore.h in the include folder yeah?

On 3 February 2014 15:08, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
> I think you are probably using the wrong csoundCore.h header. The old FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles Csound),
> whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in 64bit).
>
> And that difference will make memset clear more memory than it should.
>
> Victor
> On 3 Feb 2014, at 14:56, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
>
>> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit OS), FUNC should be smaller, because its
>> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's why the field is getting zeroed.
>>
>> Victor
>>
>>
>> On 3 Feb 2014, at 14:36, Rory Walsh <rorywalsh@ear.ie> wrote:
>>
>>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>
>>> On 3 February 2014 13:46, Michael Gogins <michael.gogins@gmail.com> wrote:
>>>> I didn't have time to get to this yesterday, but I should be able to this
>>>> evening.
>>>>
>>>> Regards,
>>>> Mike
>>>>
>>>>
>>>> -----------------------------------------------------
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://michaelgogins.tumblr.com
>>>> Michael dot Gogins at gmail dot com
>>>>
>>>>
>>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie>
>>>> wrote:
>>>>>
>>>>> Also you could add this to check out the size of FUNC
>>>>>
>>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n", sizeof(FUNC),
>>>>> sizeof(MYFLT*));
>>>>>
>>>>> Victor
>>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini <Victor.Lazzarini@nuim.ie>
>>>>> wrote:
>>>>>
>>>>>> yes, I had discarded that as Rory had said that fp hadn't changed. Now
>>>>>> it's clearer.
>>>>>> I wonder if there is a header mismatch because that part of the code had
>>>>>> changed
>>>>>> and the FGDATA structure is now different. If somehow the compiler is
>>>>>> seeing an
>>>>>> old csoundCore.h, that could be the reason.
>>>>>>
>>>>>> Rory, can you make sure there is only one csoundCore.h  in your system
>>>>>> and that
>>>>>> is the latest one?
>>>>>>
>>>>>> Victor
>>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>>
>>>>>>> Does not make sense to me but that information suggests that the
>>>>>>> memset is clearing too much.
>>>>>>> ==John
>>>>>>>
>>>>>>> Quoting Rory Walsh <rorywalsh@ear.ie>:
>>>>>>>
>>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>>> ftp->ftable is not the same each time. First time through it's ftable
>>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies for
>>>>>>>> not catching that before. GDB from the command line is a nightmare.
>>>>>>>>
>>>>>>>> On 3 February 2014 12:04, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>>> table! */
>>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>> Read the Whitepaper.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>>
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2014-02-03 15:34
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
The only other one I see is in iOS.

On 3 February 2014 15:31, Michael Gogins  wrote:
> The only csoundCore.h that you see should be in the include folder. If you
> find another one you should delete it.
>
> Regards,
> Mike
>
>
> -----------------------------------------------------
> Michael Gogins
> Irreducible Productions
> http://michaelgogins.tumblr.com
> Michael dot Gogins at gmail dot com
>
>
> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh  wrote:
>>
>> Mine has:
>> MYFLT   *ftable;
>> Btw, this is the csoundCore.h in the include folder yeah?
>>
>> On 3 February 2014 15:08, Victor Lazzarini 
>> wrote:
>> > I think you are probably using the wrong csoundCore.h header. The old
>> > FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>> > Csound),
>> > whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>> > 64bit).
>> >
>> > And that difference will make memset clear more memory than it should.
>> >
>> > Victor
>> > On 3 Feb 2014, at 14:56, Victor Lazzarini 
>> > wrote:
>> >
>> >> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>> >> OS), FUNC should be smaller, because its
>> >> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>> >> why the field is getting zeroed.
>> >>
>> >> Victor
>> >>
>> >>
>> >> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>> >>
>> >>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>> >>>
>> >>> On 3 February 2014 13:46, Michael Gogins 
>> >>> wrote:
>> >>>> I didn't have time to get to this yesterday, but I should be able to
>> >>>> this
>> >>>> evening.
>> >>>>
>> >>>> Regards,
>> >>>> Mike
>> >>>>
>> >>>>
>> >>>> -----------------------------------------------------
>> >>>> Michael Gogins
>> >>>> Irreducible Productions
>> >>>> http://michaelgogins.tumblr.com
>> >>>> Michael dot Gogins at gmail dot com
>> >>>>
>> >>>>
>> >>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>> >>>> 
>> >>>> wrote:
>> >>>>>
>> >>>>> Also you could add this to check out the size of FUNC
>> >>>>>
>> >>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>> >>>>> sizeof(FUNC),
>> >>>>> sizeof(MYFLT*));
>> >>>>>
>> >>>>> Victor
>> >>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>> >>>>> wrote:
>> >>>>>
>> >>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>> >>>>>> Now
>> >>>>>> it's clearer.
>> >>>>>> I wonder if there is a header mismatch because that part of the
>> >>>>>> code had
>> >>>>>> changed
>> >>>>>> and the FGDATA structure is now different. If somehow the compiler
>> >>>>>> is
>> >>>>>> seeing an
>> >>>>>> old csoundCore.h, that could be the reason.
>> >>>>>>
>> >>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>> >>>>>> system
>> >>>>>> and that
>> >>>>>> is the latest one?
>> >>>>>>
>> >>>>>> Victor
>> >>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>> >>>>>>
>> >>>>>>> Does not make sense to me but that information suggests that the
>> >>>>>>> memset is clearing too much.
>> >>>>>>> ==John
>> >>>>>>>
>> >>>>>>> Quoting Rory Walsh :
>> >>>>>>>
>> >>>>>>>> One thing I can see now with a better debug environment is that
>> >>>>>>>> ftp->ftable is not the same each time. First time through it's
>> >>>>>>>> ftable
>> >>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>> >>>>>>>> for
>> >>>>>>>> not catching that before. GDB from the command line is a
>> >>>>>>>> nightmare.
>> >>>>>>>>
>> >>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>> >>>>>>>>> Line 2295 seems to be the problem:
>> >>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>> >>>>>>>>> table! */
>> >>>>>>>>> Commenting it out results in no segfaults.
>> >>>>>>>>
>> >>>>>>>>
>> >>>>>>>>
>> >>>>>>>> ------------------------------------------------------------------------------
>> >>>>>>>> Managing the Performance of Cloud-Based Applications
>> >>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>> >>>>>>>> Pitfalls.
>> >>>>>>>> Read the Whitepaper.
>> >>>>>>>>
>> >>>>>>>>
>> >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >>>>>>>> _______________________________________________
>> >>>>>>>> Csound-devel mailing list
>> >>>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>>
>> >>>>>>>
>> >>>>>>>
>> >>>>>>>
>> >>>>>>>
>> >>>>>>>
>> >>>>>>> ------------------------------------------------------------------------------
>> >>>>>>> Managing the Performance of Cloud-Based Applications
>> >>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>> >>>>>>> Pitfalls.
>> >>>>>>> Read the Whitepaper.
>> >>>>>>>
>> >>>>>>>
>> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >>>>>>> _______________________________________________
>> >>>>>>> Csound-devel mailing list
>> >>>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>>> ------------------------------------------------------------------------------
>> >>>>>> Managing the Performance of Cloud-Based Applications
>> >>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>> >>>>>> Pitfalls.
>> >>>>>> Read the Whitepaper.
>> >>>>>>
>> >>>>>>
>> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >>>>>> _______________________________________________
>> >>>>>> Csound-devel mailing list
>> >>>>>> Csound-devel@lists.sourceforge.net
>> >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>>
>> >>>>>
>> >>>>>
>> >>>>>
>> >>>>> ------------------------------------------------------------------------------
>> >>>>> Managing the Performance of Cloud-Based Applications
>> >>>>> Take advantage of what the Cloud has to offer - Avoid Common
>> >>>>> Pitfalls.
>> >>>>> Read the Whitepaper.
>> >>>>>
>> >>>>>
>> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >>>>> _______________________________________________
>> >>>>> Csound-devel mailing list
>> >>>>> Csound-devel@lists.sourceforge.net
>> >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>
>> >>>>
>> >>>>
>> >>>>
>> >>>> ------------------------------------------------------------------------------
>> >>>> Managing the Performance of Cloud-Based Applications
>> >>>> Take advantage of what the Cloud has to offer - Avoid Common
>> >>>> Pitfalls.
>> >>>> Read the Whitepaper.
>> >>>>
>> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >>>> _______________________________________________
>> >>>> Csound-devel mailing list
>> >>>> Csound-devel@lists.sourceforge.net
>> >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>>>
>> >>>
>> >>>
>> >>> ------------------------------------------------------------------------------
>> >>> Managing the Performance of Cloud-Based Applications
>> >>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> >>> Read the Whitepaper.
>> >>>
>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >>> _______________________________________________
>> >>> Csound-devel mailing list
>> >>> Csound-devel@lists.sourceforge.net
>> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >>
>> >>
>> >>
>> >> ------------------------------------------------------------------------------
>> >> Managing the Performance of Cloud-Based Applications
>> >> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> >> Read the Whitepaper.
>> >>
>> >> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> >> _______________________________________________
>> >> Csound-devel mailing list
>> >> Csound-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> >
>> >
>> >
>> > ------------------------------------------------------------------------------
>> > Managing the Performance of Cloud-Based Applications
>> > Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> > Read the Whitepaper.
>> >
>> > http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> > _______________________________________________
>> > Csound-devel mailing list
>> > Csound-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 16:49
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
I think at this stage we should probably wait until Mike can confirm
the same behaviour on his machine. I don't want to waste the devs time
with something that could possibly be local to my PC.

On 3 February 2014 15:34, Rory Walsh  wrote:
> The only other one I see is in iOS.
>
> On 3 February 2014 15:31, Michael Gogins  wrote:
>> The only csoundCore.h that you see should be in the include folder. If you
>> find another one you should delete it.
>>
>> Regards,
>> Mike
>>
>>
>> -----------------------------------------------------
>> Michael Gogins
>> Irreducible Productions
>> http://michaelgogins.tumblr.com
>> Michael dot Gogins at gmail dot com
>>
>>
>> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh  wrote:
>>>
>>> Mine has:
>>> MYFLT   *ftable;
>>> Btw, this is the csoundCore.h in the include folder yeah?
>>>
>>> On 3 February 2014 15:08, Victor Lazzarini 
>>> wrote:
>>> > I think you are probably using the wrong csoundCore.h header. The old
>>> > FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>>> > Csound),
>>> > whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>>> > 64bit).
>>> >
>>> > And that difference will make memset clear more memory than it should.
>>> >
>>> > Victor
>>> > On 3 Feb 2014, at 14:56, Victor Lazzarini 
>>> > wrote:
>>> >
>>> >> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>>> >> OS), FUNC should be smaller, because its
>>> >> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>>> >> why the field is getting zeroed.
>>> >>
>>> >> Victor
>>> >>
>>> >>
>>> >> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>>> >>
>>> >>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>> >>>
>>> >>> On 3 February 2014 13:46, Michael Gogins 
>>> >>> wrote:
>>> >>>> I didn't have time to get to this yesterday, but I should be able to
>>> >>>> this
>>> >>>> evening.
>>> >>>>
>>> >>>> Regards,
>>> >>>> Mike
>>> >>>>
>>> >>>>
>>> >>>> -----------------------------------------------------
>>> >>>> Michael Gogins
>>> >>>> Irreducible Productions
>>> >>>> http://michaelgogins.tumblr.com
>>> >>>> Michael dot Gogins at gmail dot com
>>> >>>>
>>> >>>>
>>> >>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>>> >>>> 
>>> >>>> wrote:
>>> >>>>>
>>> >>>>> Also you could add this to check out the size of FUNC
>>> >>>>>
>>> >>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>>> >>>>> sizeof(FUNC),
>>> >>>>> sizeof(MYFLT*));
>>> >>>>>
>>> >>>>> Victor
>>> >>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>> >>>>> wrote:
>>> >>>>>
>>> >>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>>> >>>>>> Now
>>> >>>>>> it's clearer.
>>> >>>>>> I wonder if there is a header mismatch because that part of the
>>> >>>>>> code had
>>> >>>>>> changed
>>> >>>>>> and the FGDATA structure is now different. If somehow the compiler
>>> >>>>>> is
>>> >>>>>> seeing an
>>> >>>>>> old csoundCore.h, that could be the reason.
>>> >>>>>>
>>> >>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>>> >>>>>> system
>>> >>>>>> and that
>>> >>>>>> is the latest one?
>>> >>>>>>
>>> >>>>>> Victor
>>> >>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>> >>>>>>
>>> >>>>>>> Does not make sense to me but that information suggests that the
>>> >>>>>>> memset is clearing too much.
>>> >>>>>>> ==John
>>> >>>>>>>
>>> >>>>>>> Quoting Rory Walsh :
>>> >>>>>>>
>>> >>>>>>>> One thing I can see now with a better debug environment is that
>>> >>>>>>>> ftp->ftable is not the same each time. First time through it's
>>> >>>>>>>> ftable
>>> >>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>>> >>>>>>>> for
>>> >>>>>>>> not catching that before. GDB from the command line is a
>>> >>>>>>>> nightmare.
>>> >>>>>>>>
>>> >>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>> >>>>>>>>> Line 2295 seems to be the problem:
>>> >>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>> >>>>>>>>> table! */
>>> >>>>>>>>> Commenting it out results in no segfaults.
>>> >>>>>>>>
>>> >>>>>>>>
>>> >>>>>>>>
>>> >>>>>>>> ------------------------------------------------------------------------------
>>> >>>>>>>> Managing the Performance of Cloud-Based Applications
>>> >>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>> >>>>>>>> Pitfalls.
>>> >>>>>>>> Read the Whitepaper.
>>> >>>>>>>>
>>> >>>>>>>>
>>> >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> >>>>>>>> _______________________________________________
>>> >>>>>>>> Csound-devel mailing list
>>> >>>>>>>> Csound-devel@lists.sourceforge.net
>>> >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >>>>>>>
>>> >>>>>>>
>>> >>>>>>>
>>> >>>>>>>
>>> >>>>>>>
>>> >>>>>>>
>>> >>>>>>> ------------------------------------------------------------------------------
>>> >>>>>>> Managing the Performance of Cloud-Based Applications
>>> >>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>> >>>>>>> Pitfalls.
>>> >>>>>>> Read the Whitepaper.
>>> >>>>>>>
>>> >>>>>>>
>>> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> >>>>>>> _______________________________________________
>>> >>>>>>> Csound-devel mailing list
>>> >>>>>>> Csound-devel@lists.sourceforge.net
>>> >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >>>>>>
>>> >>>>>>
>>> >>>>>>
>>> >>>>>>
>>> >>>>>> ------------------------------------------------------------------------------
>>> >>>>>> Managing the Performance of Cloud-Based Applications
>>> >>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>> >>>>>> Pitfalls.
>>> >>>>>> Read the Whitepaper.
>>> >>>>>>
>>> >>>>>>
>>> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> >>>>>> _______________________________________________
>>> >>>>>> Csound-devel mailing list
>>> >>>>>> Csound-devel@lists.sourceforge.net
>>> >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >>>>>
>>> >>>>>
>>> >>>>>
>>> >>>>>
>>> >>>>> ------------------------------------------------------------------------------
>>> >>>>> Managing the Performance of Cloud-Based Applications
>>> >>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>> >>>>> Pitfalls.
>>> >>>>> Read the Whitepaper.
>>> >>>>>
>>> >>>>>
>>> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> >>>>> _______________________________________________
>>> >>>>> Csound-devel mailing list
>>> >>>>> Csound-devel@lists.sourceforge.net
>>> >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >>>>
>>> >>>>
>>> >>>>
>>> >>>>
>>> >>>> ------------------------------------------------------------------------------
>>> >>>> Managing the Performance of Cloud-Based Applications
>>> >>>> Take advantage of what the Cloud has to offer - Avoid Common
>>> >>>> Pitfalls.
>>> >>>> Read the Whitepaper.
>>> >>>>
>>> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> >>>> _______________________________________________
>>> >>>> Csound-devel mailing list
>>> >>>> Csound-devel@lists.sourceforge.net
>>> >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >>>>
>>> >>>
>>> >>>
>>> >>> ------------------------------------------------------------------------------
>>> >>> Managing the Performance of Cloud-Based Applications
>>> >>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> >>> Read the Whitepaper.
>>> >>>
>>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> >>> _______________________________________________
>>> >>> Csound-devel mailing list
>>> >>> Csound-devel@lists.sourceforge.net
>>> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >>
>>> >>
>>> >>
>>> >> ------------------------------------------------------------------------------
>>> >> Managing the Performance of Cloud-Based Applications
>>> >> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> >> Read the Whitepaper.
>>> >>
>>> >> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> >> _______________________________________________
>>> >> Csound-devel mailing list
>>> >> Csound-devel@lists.sourceforge.net
>>> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> >
>>> >
>>> >
>>> > ------------------------------------------------------------------------------
>>> > Managing the Performance of Cloud-Based Applications
>>> > Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> > Read the Whitepaper.
>>> >
>>> > http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> > _______________________________________________
>>> > Csound-devel mailing list
>>> > Csound-devel@lists.sourceforge.net
>>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>>
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 17:04
FromSteven Yi
SubjectRe: [Cs-dev] latest devel for windows..
Just FYI: I ran the rewindscore CSD here on my Win 8.1 tablet and it
crashed with a segmentation violation. This is using the pre-built
6.02 release. I still haven't sorted out my windows build here and
it's also slow to build on this tablet, but I'll try to assist if
possible.

On Mon, Feb 3, 2014 at 11:49 AM, Rory Walsh  wrote:
> I think at this stage we should probably wait until Mike can confirm
> the same behaviour on his machine. I don't want to waste the devs time
> with something that could possibly be local to my PC.
>
> On 3 February 2014 15:34, Rory Walsh  wrote:
>> The only other one I see is in iOS.
>>
>> On 3 February 2014 15:31, Michael Gogins  wrote:
>>> The only csoundCore.h that you see should be in the include folder. If you
>>> find another one you should delete it.
>>>
>>> Regards,
>>> Mike
>>>
>>>
>>> -----------------------------------------------------
>>> Michael Gogins
>>> Irreducible Productions
>>> http://michaelgogins.tumblr.com
>>> Michael dot Gogins at gmail dot com
>>>
>>>
>>> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh  wrote:
>>>>
>>>> Mine has:
>>>> MYFLT   *ftable;
>>>> Btw, this is the csoundCore.h in the include folder yeah?
>>>>
>>>> On 3 February 2014 15:08, Victor Lazzarini 
>>>> wrote:
>>>> > I think you are probably using the wrong csoundCore.h header. The old
>>>> > FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>>>> > Csound),
>>>> > whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>>>> > 64bit).
>>>> >
>>>> > And that difference will make memset clear more memory than it should.
>>>> >
>>>> > Victor
>>>> > On 3 Feb 2014, at 14:56, Victor Lazzarini 
>>>> > wrote:
>>>> >
>>>> >> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>>>> >> OS), FUNC should be smaller, because its
>>>> >> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>>>> >> why the field is getting zeroed.
>>>> >>
>>>> >> Victor
>>>> >>
>>>> >>
>>>> >> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>>>> >>
>>>> >>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>> >>>
>>>> >>> On 3 February 2014 13:46, Michael Gogins 
>>>> >>> wrote:
>>>> >>>> I didn't have time to get to this yesterday, but I should be able to
>>>> >>>> this
>>>> >>>> evening.
>>>> >>>>
>>>> >>>> Regards,
>>>> >>>> Mike
>>>> >>>>
>>>> >>>>
>>>> >>>> -----------------------------------------------------
>>>> >>>> Michael Gogins
>>>> >>>> Irreducible Productions
>>>> >>>> http://michaelgogins.tumblr.com
>>>> >>>> Michael dot Gogins at gmail dot com
>>>> >>>>
>>>> >>>>
>>>> >>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>>>> >>>> 
>>>> >>>> wrote:
>>>> >>>>>
>>>> >>>>> Also you could add this to check out the size of FUNC
>>>> >>>>>
>>>> >>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>>>> >>>>> sizeof(FUNC),
>>>> >>>>> sizeof(MYFLT*));
>>>> >>>>>
>>>> >>>>> Victor
>>>> >>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>> >>>>> wrote:
>>>> >>>>>
>>>> >>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>>>> >>>>>> Now
>>>> >>>>>> it's clearer.
>>>> >>>>>> I wonder if there is a header mismatch because that part of the
>>>> >>>>>> code had
>>>> >>>>>> changed
>>>> >>>>>> and the FGDATA structure is now different. If somehow the compiler
>>>> >>>>>> is
>>>> >>>>>> seeing an
>>>> >>>>>> old csoundCore.h, that could be the reason.
>>>> >>>>>>
>>>> >>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>>>> >>>>>> system
>>>> >>>>>> and that
>>>> >>>>>> is the latest one?
>>>> >>>>>>
>>>> >>>>>> Victor
>>>> >>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>> >>>>>>
>>>> >>>>>>> Does not make sense to me but that information suggests that the
>>>> >>>>>>> memset is clearing too much.
>>>> >>>>>>> ==John
>>>> >>>>>>>
>>>> >>>>>>> Quoting Rory Walsh :
>>>> >>>>>>>
>>>> >>>>>>>> One thing I can see now with a better debug environment is that
>>>> >>>>>>>> ftp->ftable is not the same each time. First time through it's
>>>> >>>>>>>> ftable
>>>> >>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>>>> >>>>>>>> for
>>>> >>>>>>>> not catching that before. GDB from the command line is a
>>>> >>>>>>>> nightmare.
>>>> >>>>>>>>
>>>> >>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>> >>>>>>>>> Line 2295 seems to be the problem:
>>>> >>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>> >>>>>>>>> table! */
>>>> >>>>>>>>> Commenting it out results in no segfaults.
>>>> >>>>>>>>
>>>> >>>>>>>>
>>>> >>>>>>>>
>>>> >>>>>>>> ------------------------------------------------------------------------------
>>>> >>>>>>>> Managing the Performance of Cloud-Based Applications
>>>> >>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>> >>>>>>>> Pitfalls.
>>>> >>>>>>>> Read the Whitepaper.
>>>> >>>>>>>>
>>>> >>>>>>>>
>>>> >>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> >>>>>>>> _______________________________________________
>>>> >>>>>>>> Csound-devel mailing list
>>>> >>>>>>>> Csound-devel@lists.sourceforge.net
>>>> >>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> >>>>>>>
>>>> >>>>>>>
>>>> >>>>>>>
>>>> >>>>>>>
>>>> >>>>>>>
>>>> >>>>>>>
>>>> >>>>>>> ------------------------------------------------------------------------------
>>>> >>>>>>> Managing the Performance of Cloud-Based Applications
>>>> >>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>> >>>>>>> Pitfalls.
>>>> >>>>>>> Read the Whitepaper.
>>>> >>>>>>>
>>>> >>>>>>>
>>>> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> >>>>>>> _______________________________________________
>>>> >>>>>>> Csound-devel mailing list
>>>> >>>>>>> Csound-devel@lists.sourceforge.net
>>>> >>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> >>>>>>
>>>> >>>>>>
>>>> >>>>>>
>>>> >>>>>>
>>>> >>>>>> ------------------------------------------------------------------------------
>>>> >>>>>> Managing the Performance of Cloud-Based Applications
>>>> >>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>> >>>>>> Pitfalls.
>>>> >>>>>> Read the Whitepaper.
>>>> >>>>>>
>>>> >>>>>>
>>>> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> >>>>>> _______________________________________________
>>>> >>>>>> Csound-devel mailing list
>>>> >>>>>> Csound-devel@lists.sourceforge.net
>>>> >>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> >>>>>
>>>> >>>>>
>>>> >>>>>
>>>> >>>>>
>>>> >>>>> ------------------------------------------------------------------------------
>>>> >>>>> Managing the Performance of Cloud-Based Applications
>>>> >>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>> >>>>> Pitfalls.
>>>> >>>>> Read the Whitepaper.
>>>> >>>>>
>>>> >>>>>
>>>> >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> >>>>> _______________________________________________
>>>> >>>>> Csound-devel mailing list
>>>> >>>>> Csound-devel@lists.sourceforge.net
>>>> >>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> >>>>
>>>> >>>>
>>>> >>>>
>>>> >>>>
>>>> >>>> ------------------------------------------------------------------------------
>>>> >>>> Managing the Performance of Cloud-Based Applications
>>>> >>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>> >>>> Pitfalls.
>>>> >>>> Read the Whitepaper.
>>>> >>>>
>>>> >>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> >>>> _______________________________________________
>>>> >>>> Csound-devel mailing list
>>>> >>>> Csound-devel@lists.sourceforge.net
>>>> >>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> >>>>
>>>> >>>
>>>> >>>
>>>> >>> ------------------------------------------------------------------------------
>>>> >>> Managing the Performance of Cloud-Based Applications
>>>> >>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> >>> Read the Whitepaper.
>>>> >>>
>>>> >>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> >>> _______________________________________________
>>>> >>> Csound-devel mailing list
>>>> >>> Csound-devel@lists.sourceforge.net
>>>> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> >>
>>>> >>
>>>> >>
>>>> >> ------------------------------------------------------------------------------
>>>> >> Managing the Performance of Cloud-Based Applications
>>>> >> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> >> Read the Whitepaper.
>>>> >>
>>>> >> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> >> _______________________________________________
>>>> >> Csound-devel mailing list
>>>> >> Csound-devel@lists.sourceforge.net
>>>> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> >
>>>> >
>>>> >
>>>> > ------------------------------------------------------------------------------
>>>> > Managing the Performance of Cloud-Based Applications
>>>> > Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> > Read the Whitepaper.
>>>> >
>>>> > http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> > _______________________________________________
>>>> > Csound-devel mailing list
>>>> > Csound-devel@lists.sourceforge.net
>>>> > https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>>
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 17:19
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
I think this points to some funny padding that windows does. Is the prebuilt 32 or 64 bit?
If the problem is confirmed, we can replace the memset with an item by item reset.

Victor
On 3 Feb 2014, at 17:04, Steven Yi  wrote:

> Just FYI: I ran the rewindscore CSD here on my Win 8.1 tablet and it
> crashed with a segmentation violation. This is using the pre-built
> 6.02 release. I still haven't sorted out my windows build here and
> it's also slow to build on this tablet, but I'll try to assist if
> possible.
> 
> On Mon, Feb 3, 2014 at 11:49 AM, Rory Walsh  wrote:
>> I think at this stage we should probably wait until Mike can confirm
>> the same behaviour on his machine. I don't want to waste the devs time
>> with something that could possibly be local to my PC.
>> 
>> On 3 February 2014 15:34, Rory Walsh  wrote:
>>> The only other one I see is in iOS.
>>> 
>>> On 3 February 2014 15:31, Michael Gogins  wrote:
>>>> The only csoundCore.h that you see should be in the include folder. If you
>>>> find another one you should delete it.
>>>> 
>>>> Regards,
>>>> Mike
>>>> 
>>>> 
>>>> -----------------------------------------------------
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://michaelgogins.tumblr.com
>>>> Michael dot Gogins at gmail dot com
>>>> 
>>>> 
>>>> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh  wrote:
>>>>> 
>>>>> Mine has:
>>>>> MYFLT   *ftable;
>>>>> Btw, this is the csoundCore.h in the include folder yeah?
>>>>> 
>>>>> On 3 February 2014 15:08, Victor Lazzarini 
>>>>> wrote:
>>>>>> I think you are probably using the wrong csoundCore.h header. The old
>>>>>> FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>>>>>> Csound),
>>>>>> whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>>>>>> 64bit).
>>>>>> 
>>>>>> And that difference will make memset clear more memory than it should.
>>>>>> 
>>>>>> Victor
>>>>>> On 3 Feb 2014, at 14:56, Victor Lazzarini 
>>>>>> wrote:
>>>>>> 
>>>>>>> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>>>>>>> OS), FUNC should be smaller, because its
>>>>>>> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>>>>>>> why the field is getting zeroed.
>>>>>>> 
>>>>>>> Victor
>>>>>>> 
>>>>>>> 
>>>>>>> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>>>>>>> 
>>>>>>>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>>>>>> 
>>>>>>>> On 3 February 2014 13:46, Michael Gogins 
>>>>>>>> wrote:
>>>>>>>>> I didn't have time to get to this yesterday, but I should be able to
>>>>>>>>> this
>>>>>>>>> evening.
>>>>>>>>> 
>>>>>>>>> Regards,
>>>>>>>>> Mike
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> -----------------------------------------------------
>>>>>>>>> Michael Gogins
>>>>>>>>> Irreducible Productions
>>>>>>>>> http://michaelgogins.tumblr.com
>>>>>>>>> Michael dot Gogins at gmail dot com
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>>>>>>>>> 
>>>>>>>>> wrote:
>>>>>>>>>> 
>>>>>>>>>> Also you could add this to check out the size of FUNC
>>>>>>>>>> 
>>>>>>>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>>>>>>>>>> sizeof(FUNC),
>>>>>>>>>> sizeof(MYFLT*));
>>>>>>>>>> 
>>>>>>>>>> Victor
>>>>>>>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>>>>>>>> wrote:
>>>>>>>>>> 
>>>>>>>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>>>>>>>>>>> Now
>>>>>>>>>>> it's clearer.
>>>>>>>>>>> I wonder if there is a header mismatch because that part of the
>>>>>>>>>>> code had
>>>>>>>>>>> changed
>>>>>>>>>>> and the FGDATA structure is now different. If somehow the compiler
>>>>>>>>>>> is
>>>>>>>>>>> seeing an
>>>>>>>>>>> old csoundCore.h, that could be the reason.
>>>>>>>>>>> 
>>>>>>>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>>>>>>>>>>> system
>>>>>>>>>>> and that
>>>>>>>>>>> is the latest one?
>>>>>>>>>>> 
>>>>>>>>>>> Victor
>>>>>>>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>>>>>>> 
>>>>>>>>>>>> Does not make sense to me but that information suggests that the
>>>>>>>>>>>> memset is clearing too much.
>>>>>>>>>>>> ==John
>>>>>>>>>>>> 
>>>>>>>>>>>> Quoting Rory Walsh :
>>>>>>>>>>>> 
>>>>>>>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>>>>>>>> ftp->ftable is not the same each time. First time through it's
>>>>>>>>>>>>> ftable
>>>>>>>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>>>>>>>>>>>>> for
>>>>>>>>>>>>> not catching that before. GDB from the command line is a
>>>>>>>>>>>>> nightmare.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>>>>>>>> table! */
>>>>>>>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>> Pitfalls.
>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>> Pitfalls.
>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>> Pitfalls.
>>>>>>>>> Read the Whitepaper.
>>>>>>>>> 
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>> Read the Whitepaper.
>>>>>>>> 
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>> 
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>> 
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>> 
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>> 
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 17:23
FromSteven Yi
SubjectRe: [Cs-dev] latest devel for windows..
The prebuilt is 32-bit. I don't think anyone has built 64-bit on
windows yet (I managed to do it on Linux with the cross-compiler, but
that hasn't been looked after really).

On Mon, Feb 3, 2014 at 12:19 PM, Victor Lazzarini
 wrote:
> I think this points to some funny padding that windows does. Is the prebuilt 32 or 64 bit?
> If the problem is confirmed, we can replace the memset with an item by item reset.
>
> Victor
> On 3 Feb 2014, at 17:04, Steven Yi  wrote:
>
>> Just FYI: I ran the rewindscore CSD here on my Win 8.1 tablet and it
>> crashed with a segmentation violation. This is using the pre-built
>> 6.02 release. I still haven't sorted out my windows build here and
>> it's also slow to build on this tablet, but I'll try to assist if
>> possible.
>>
>> On Mon, Feb 3, 2014 at 11:49 AM, Rory Walsh  wrote:
>>> I think at this stage we should probably wait until Mike can confirm
>>> the same behaviour on his machine. I don't want to waste the devs time
>>> with something that could possibly be local to my PC.
>>>
>>> On 3 February 2014 15:34, Rory Walsh  wrote:
>>>> The only other one I see is in iOS.
>>>>
>>>> On 3 February 2014 15:31, Michael Gogins  wrote:
>>>>> The only csoundCore.h that you see should be in the include folder. If you
>>>>> find another one you should delete it.
>>>>>
>>>>> Regards,
>>>>> Mike
>>>>>
>>>>>
>>>>> -----------------------------------------------------
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://michaelgogins.tumblr.com
>>>>> Michael dot Gogins at gmail dot com
>>>>>
>>>>>
>>>>> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh  wrote:
>>>>>>
>>>>>> Mine has:
>>>>>> MYFLT   *ftable;
>>>>>> Btw, this is the csoundCore.h in the include folder yeah?
>>>>>>
>>>>>> On 3 February 2014 15:08, Victor Lazzarini 
>>>>>> wrote:
>>>>>>> I think you are probably using the wrong csoundCore.h header. The old
>>>>>>> FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>>>>>>> Csound),
>>>>>>> whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>>>>>>> 64bit).
>>>>>>>
>>>>>>> And that difference will make memset clear more memory than it should.
>>>>>>>
>>>>>>> Victor
>>>>>>> On 3 Feb 2014, at 14:56, Victor Lazzarini 
>>>>>>> wrote:
>>>>>>>
>>>>>>>> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>>>>>>>> OS), FUNC should be smaller, because its
>>>>>>>> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>>>>>>>> why the field is getting zeroed.
>>>>>>>>
>>>>>>>> Victor
>>>>>>>>
>>>>>>>>
>>>>>>>> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>>>>>>>>
>>>>>>>>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>>>>>>>
>>>>>>>>> On 3 February 2014 13:46, Michael Gogins 
>>>>>>>>> wrote:
>>>>>>>>>> I didn't have time to get to this yesterday, but I should be able to
>>>>>>>>>> this
>>>>>>>>>> evening.
>>>>>>>>>>
>>>>>>>>>> Regards,
>>>>>>>>>> Mike
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> -----------------------------------------------------
>>>>>>>>>> Michael Gogins
>>>>>>>>>> Irreducible Productions
>>>>>>>>>> http://michaelgogins.tumblr.com
>>>>>>>>>> Michael dot Gogins at gmail dot com
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>>>>>>>>>> 
>>>>>>>>>> wrote:
>>>>>>>>>>>
>>>>>>>>>>> Also you could add this to check out the size of FUNC
>>>>>>>>>>>
>>>>>>>>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>>>>>>>>>>> sizeof(FUNC),
>>>>>>>>>>> sizeof(MYFLT*));
>>>>>>>>>>>
>>>>>>>>>>> Victor
>>>>>>>>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>>>>>>>>> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>>>>>>>>>>>> Now
>>>>>>>>>>>> it's clearer.
>>>>>>>>>>>> I wonder if there is a header mismatch because that part of the
>>>>>>>>>>>> code had
>>>>>>>>>>>> changed
>>>>>>>>>>>> and the FGDATA structure is now different. If somehow the compiler
>>>>>>>>>>>> is
>>>>>>>>>>>> seeing an
>>>>>>>>>>>> old csoundCore.h, that could be the reason.
>>>>>>>>>>>>
>>>>>>>>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>>>>>>>>>>>> system
>>>>>>>>>>>> and that
>>>>>>>>>>>> is the latest one?
>>>>>>>>>>>>
>>>>>>>>>>>> Victor
>>>>>>>>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Does not make sense to me but that information suggests that the
>>>>>>>>>>>>> memset is clearing too much.
>>>>>>>>>>>>> ==John
>>>>>>>>>>>>>
>>>>>>>>>>>>> Quoting Rory Walsh :
>>>>>>>>>>>>>
>>>>>>>>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>>>>>>>>> ftp->ftable is not the same each time. First time through it's
>>>>>>>>>>>>>> ftable
>>>>>>>>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>>>>>>>>>>>>>> for
>>>>>>>>>>>>>> not catching that before. GDB from the command line is a
>>>>>>>>>>>>>> nightmare.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>>>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>>>>>>>>> table! */
>>>>>>>>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>> Pitfalls.
>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>> Pitfalls.
>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>>> Read the Whitepaper.
>>>>>>>>>
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>> Read the Whitepaper.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 17:49
FromMichael Gogins
SubjectRe: [Cs-dev] latest devel for windows..
AttachmentsNone  None  
As far as I know there is no Windows build of Csound for 64 bit CPU architecture. I would sure like to see one, though.

Regards,
Mike


-----------------------------------------------------
Michael Gogins
Irreducible Productions
http://michaelgogins.tumblr.com
Michael dot Gogins at gmail dot com


On Mon, Feb 3, 2014 at 12:23 PM, Steven Yi <stevenyi@gmail.com> wrote:
The prebuilt is 32-bit. I don't think anyone has built 64-bit on
windows yet (I managed to do it on Linux with the cross-compiler, but
that hasn't been looked after really).

On Mon, Feb 3, 2014 at 12:19 PM, Victor Lazzarini
<Victor.Lazzarini@nuim.ie> wrote:
> I think this points to some funny padding that windows does. Is the prebuilt 32 or 64 bit?
> If the problem is confirmed, we can replace the memset with an item by item reset.
>
> Victor
> On 3 Feb 2014, at 17:04, Steven Yi <stevenyi@gmail.com> wrote:
>
>> Just FYI: I ran the rewindscore CSD here on my Win 8.1 tablet and it
>> crashed with a segmentation violation. This is using the pre-built
>> 6.02 release. I still haven't sorted out my windows build here and
>> it's also slow to build on this tablet, but I'll try to assist if
>> possible.
>>
>> On Mon, Feb 3, 2014 at 11:49 AM, Rory Walsh <rorywalsh@ear.ie> wrote:
>>> I think at this stage we should probably wait until Mike can confirm
>>> the same behaviour on his machine. I don't want to waste the devs time
>>> with something that could possibly be local to my PC.
>>>
>>> On 3 February 2014 15:34, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>> The only other one I see is in iOS.
>>>>
>>>> On 3 February 2014 15:31, Michael Gogins <michael.gogins@gmail.com> wrote:
>>>>> The only csoundCore.h that you see should be in the include folder. If you
>>>>> find another one you should delete it.
>>>>>
>>>>> Regards,
>>>>> Mike
>>>>>
>>>>>
>>>>> -----------------------------------------------------
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://michaelgogins.tumblr.com
>>>>> Michael dot Gogins at gmail dot com
>>>>>
>>>>>
>>>>> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>
>>>>>> Mine has:
>>>>>> MYFLT   *ftable;
>>>>>> Btw, this is the csoundCore.h in the include folder yeah?
>>>>>>
>>>>>> On 3 February 2014 15:08, Victor Lazzarini <Victor.Lazzarini@nuim.ie>
>>>>>> wrote:
>>>>>>> I think you are probably using the wrong csoundCore.h header. The old
>>>>>>> FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>>>>>>> Csound),
>>>>>>> whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>>>>>>> 64bit).
>>>>>>>
>>>>>>> And that difference will make memset clear more memory than it should.
>>>>>>>
>>>>>>> Victor
>>>>>>> On 3 Feb 2014, at 14:56, Victor Lazzarini <Victor.Lazzarini@nuim.ie>
>>>>>>> wrote:
>>>>>>>
>>>>>>>> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>>>>>>>> OS), FUNC should be smaller, because its
>>>>>>>> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>>>>>>>> why the field is getting zeroed.
>>>>>>>>
>>>>>>>> Victor
>>>>>>>>
>>>>>>>>
>>>>>>>> On 3 Feb 2014, at 14:36, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>
>>>>>>>>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>>>>>>>
>>>>>>>>> On 3 February 2014 13:46, Michael Gogins <michael.gogins@gmail.com>
>>>>>>>>> wrote:
>>>>>>>>>> I didn't have time to get to this yesterday, but I should be able to
>>>>>>>>>> this
>>>>>>>>>> evening.
>>>>>>>>>>
>>>>>>>>>> Regards,
>>>>>>>>>> Mike
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> -----------------------------------------------------
>>>>>>>>>> Michael Gogins
>>>>>>>>>> Irreducible Productions
>>>>>>>>>> http://michaelgogins.tumblr.com
>>>>>>>>>> Michael dot Gogins at gmail dot com
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>>>>>>>>>> <Victor.Lazzarini@nuim.ie>
>>>>>>>>>> wrote:
>>>>>>>>>>>
>>>>>>>>>>> Also you could add this to check out the size of FUNC
>>>>>>>>>>>
>>>>>>>>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>>>>>>>>>>> sizeof(FUNC),
>>>>>>>>>>> sizeof(MYFLT*));
>>>>>>>>>>>
>>>>>>>>>>> Victor
>>>>>>>>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini <Victor.Lazzarini@nuim.ie>
>>>>>>>>>>> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>>>>>>>>>>>> Now
>>>>>>>>>>>> it's clearer.
>>>>>>>>>>>> I wonder if there is a header mismatch because that part of the
>>>>>>>>>>>> code had
>>>>>>>>>>>> changed
>>>>>>>>>>>> and the FGDATA structure is now different. If somehow the compiler
>>>>>>>>>>>> is
>>>>>>>>>>>> seeing an
>>>>>>>>>>>> old csoundCore.h, that could be the reason.
>>>>>>>>>>>>
>>>>>>>>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>>>>>>>>>>>> system
>>>>>>>>>>>> and that
>>>>>>>>>>>> is the latest one?
>>>>>>>>>>>>
>>>>>>>>>>>> Victor
>>>>>>>>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Does not make sense to me but that information suggests that the
>>>>>>>>>>>>> memset is clearing too much.
>>>>>>>>>>>>> ==John
>>>>>>>>>>>>>
>>>>>>>>>>>>> Quoting Rory Walsh <rorywalsh@ear.ie>:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>>>>>>>>> ftp->ftable is not the same each time. First time through it's
>>>>>>>>>>>>>> ftable
>>>>>>>>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>>>>>>>>>>>>>> for
>>>>>>>>>>>>>> not catching that before. GDB from the command line is a
>>>>>>>>>>>>>> nightmare.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 3 February 2014 12:04, Rory Walsh <rorywalsh@ear.ie> wrote:
>>>>>>>>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>>>>>>>>> table! */
>>>>>>>>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>> Pitfalls.
>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>> Pitfalls.
>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>>> Read the Whitepaper.
>>>>>>>>>
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>> Read the Whitepaper.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>>
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>>
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2014-02-03 19:29
FromVictor Lazzarini
SubjectRe: [Cs-dev] latest devel for windows..
OK I pushed a simple fix that I hope will fix the problem. Can you pull and test it, Rory?

On 3 Feb 2014, at 17:23, Steven Yi wrote:

> The prebuilt is 32-bit. I don't think anyone has built 64-bit on
> windows yet (I managed to do it on Linux with the cross-compiler, but
> that hasn't been looked after really).
> 
> On Mon, Feb 3, 2014 at 12:19 PM, Victor Lazzarini
>  wrote:
>> I think this points to some funny padding that windows does. Is the prebuilt 32 or 64 bit?
>> If the problem is confirmed, we can replace the memset with an item by item reset.
>> 
>> Victor
>> On 3 Feb 2014, at 17:04, Steven Yi  wrote:
>> 
>>> Just FYI: I ran the rewindscore CSD here on my Win 8.1 tablet and it
>>> crashed with a segmentation violation. This is using the pre-built
>>> 6.02 release. I still haven't sorted out my windows build here and
>>> it's also slow to build on this tablet, but I'll try to assist if
>>> possible.
>>> 
>>> On Mon, Feb 3, 2014 at 11:49 AM, Rory Walsh  wrote:
>>>> I think at this stage we should probably wait until Mike can confirm
>>>> the same behaviour on his machine. I don't want to waste the devs time
>>>> with something that could possibly be local to my PC.
>>>> 
>>>> On 3 February 2014 15:34, Rory Walsh  wrote:
>>>>> The only other one I see is in iOS.
>>>>> 
>>>>> On 3 February 2014 15:31, Michael Gogins  wrote:
>>>>>> The only csoundCore.h that you see should be in the include folder. If you
>>>>>> find another one you should delete it.
>>>>>> 
>>>>>> Regards,
>>>>>> Mike
>>>>>> 
>>>>>> 
>>>>>> -----------------------------------------------------
>>>>>> Michael Gogins
>>>>>> Irreducible Productions
>>>>>> http://michaelgogins.tumblr.com
>>>>>> Michael dot Gogins at gmail dot com
>>>>>> 
>>>>>> 
>>>>>> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh  wrote:
>>>>>>> 
>>>>>>> Mine has:
>>>>>>> MYFLT   *ftable;
>>>>>>> Btw, this is the csoundCore.h in the include folder yeah?
>>>>>>> 
>>>>>>> On 3 February 2014 15:08, Victor Lazzarini 
>>>>>>> wrote:
>>>>>>>> I think you are probably using the wrong csoundCore.h header. The old
>>>>>>>> FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>>>>>>>> Csound),
>>>>>>>> whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>>>>>>>> 64bit).
>>>>>>>> 
>>>>>>>> And that difference will make memset clear more memory than it should.
>>>>>>>> 
>>>>>>>> Victor
>>>>>>>> On 3 Feb 2014, at 14:56, Victor Lazzarini 
>>>>>>>> wrote:
>>>>>>>> 
>>>>>>>>> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>>>>>>>>> OS), FUNC should be smaller, because its
>>>>>>>>> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>>>>>>>>> why the field is getting zeroed.
>>>>>>>>> 
>>>>>>>>> Victor
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>>>>>>>>> 
>>>>>>>>>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>>>>>>>> 
>>>>>>>>>> On 3 February 2014 13:46, Michael Gogins 
>>>>>>>>>> wrote:
>>>>>>>>>>> I didn't have time to get to this yesterday, but I should be able to
>>>>>>>>>>> this
>>>>>>>>>>> evening.
>>>>>>>>>>> 
>>>>>>>>>>> Regards,
>>>>>>>>>>> Mike
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> -----------------------------------------------------
>>>>>>>>>>> Michael Gogins
>>>>>>>>>>> Irreducible Productions
>>>>>>>>>>> http://michaelgogins.tumblr.com
>>>>>>>>>>> Michael dot Gogins at gmail dot com
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>>>>>>>>>>> 
>>>>>>>>>>> wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>> Also you could add this to check out the size of FUNC
>>>>>>>>>>>> 
>>>>>>>>>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>>>>>>>>>>>> sizeof(FUNC),
>>>>>>>>>>>> sizeof(MYFLT*));
>>>>>>>>>>>> 
>>>>>>>>>>>> Victor
>>>>>>>>>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>>>>>>>>>> wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>>>>>>>>>>>>> Now
>>>>>>>>>>>>> it's clearer.
>>>>>>>>>>>>> I wonder if there is a header mismatch because that part of the
>>>>>>>>>>>>> code had
>>>>>>>>>>>>> changed
>>>>>>>>>>>>> and the FGDATA structure is now different. If somehow the compiler
>>>>>>>>>>>>> is
>>>>>>>>>>>>> seeing an
>>>>>>>>>>>>> old csoundCore.h, that could be the reason.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>>>>>>>>>>>>> system
>>>>>>>>>>>>> and that
>>>>>>>>>>>>> is the latest one?
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Victor
>>>>>>>>>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Does not make sense to me but that information suggests that the
>>>>>>>>>>>>>> memset is clearing too much.
>>>>>>>>>>>>>> ==John
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Quoting Rory Walsh :
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>>>>>>>>>> ftp->ftable is not the same each time. First time through it's
>>>>>>>>>>>>>>> ftable
>>>>>>>>>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>>>>>>>>>>>>>>> for
>>>>>>>>>>>>>>> not catching that before. GDB from the command line is a
>>>>>>>>>>>>>>> nightmare.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>>>>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>>>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>>>>>>>>>> table! */
>>>>>>>>>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>> Pitfalls.
>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>> 
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>> 
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>>> Read the Whitepaper.
>>>>>>>>> 
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>> Read the Whitepaper.
>>>>>>>> 
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>> 
>>>>>>> 
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>> 
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>> Read the Whitepaper.
>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2014-02-03 19:49
FromRory Walsh
SubjectRe: [Cs-dev] latest devel for windows..
That seems to have done it Victor. No segfaults from either the
command line or in Cabbage. Thanks once again.

On 3 February 2014 19:29, Victor Lazzarini  wrote:
> OK I pushed a simple fix that I hope will fix the problem. Can you pull and test it, Rory?
>
> On 3 Feb 2014, at 17:23, Steven Yi wrote:
>
>> The prebuilt is 32-bit. I don't think anyone has built 64-bit on
>> windows yet (I managed to do it on Linux with the cross-compiler, but
>> that hasn't been looked after really).
>>
>> On Mon, Feb 3, 2014 at 12:19 PM, Victor Lazzarini
>>  wrote:
>>> I think this points to some funny padding that windows does. Is the prebuilt 32 or 64 bit?
>>> If the problem is confirmed, we can replace the memset with an item by item reset.
>>>
>>> Victor
>>> On 3 Feb 2014, at 17:04, Steven Yi  wrote:
>>>
>>>> Just FYI: I ran the rewindscore CSD here on my Win 8.1 tablet and it
>>>> crashed with a segmentation violation. This is using the pre-built
>>>> 6.02 release. I still haven't sorted out my windows build here and
>>>> it's also slow to build on this tablet, but I'll try to assist if
>>>> possible.
>>>>
>>>> On Mon, Feb 3, 2014 at 11:49 AM, Rory Walsh  wrote:
>>>>> I think at this stage we should probably wait until Mike can confirm
>>>>> the same behaviour on his machine. I don't want to waste the devs time
>>>>> with something that could possibly be local to my PC.
>>>>>
>>>>> On 3 February 2014 15:34, Rory Walsh  wrote:
>>>>>> The only other one I see is in iOS.
>>>>>>
>>>>>> On 3 February 2014 15:31, Michael Gogins  wrote:
>>>>>>> The only csoundCore.h that you see should be in the include folder. If you
>>>>>>> find another one you should delete it.
>>>>>>>
>>>>>>> Regards,
>>>>>>> Mike
>>>>>>>
>>>>>>>
>>>>>>> -----------------------------------------------------
>>>>>>> Michael Gogins
>>>>>>> Irreducible Productions
>>>>>>> http://michaelgogins.tumblr.com
>>>>>>> Michael dot Gogins at gmail dot com
>>>>>>>
>>>>>>>
>>>>>>> On Mon, Feb 3, 2014 at 10:23 AM, Rory Walsh  wrote:
>>>>>>>>
>>>>>>>> Mine has:
>>>>>>>> MYFLT   *ftable;
>>>>>>>> Btw, this is the csoundCore.h in the include folder yeah?
>>>>>>>>
>>>>>>>> On 3 February 2014 15:08, Victor Lazzarini 
>>>>>>>> wrote:
>>>>>>>>> I think you are probably using the wrong csoundCore.h header. The old
>>>>>>>>> FUNC had a MYFLT ftable[1];  member at the end (8 bytes with doubles
>>>>>>>>> Csound),
>>>>>>>>> whereas the new one has a MYFLT *ftable; (4 bytes in 32bit OS, 8 in
>>>>>>>>> 64bit).
>>>>>>>>>
>>>>>>>>> And that difference will make memset clear more memory than it should.
>>>>>>>>>
>>>>>>>>> Victor
>>>>>>>>> On 3 Feb 2014, at 14:56, Victor Lazzarini 
>>>>>>>>> wrote:
>>>>>>>>>
>>>>>>>>>> I guess there's something fishy there. If MYFLT * is 4 bytes (32bit
>>>>>>>>>> OS), FUNC should be smaller, because its
>>>>>>>>>> last item is a MYFLT *, which is 8 bits here (FUNC is 336). So that's
>>>>>>>>>> why the field is getting zeroed.
>>>>>>>>>>
>>>>>>>>>> Victor
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On 3 Feb 2014, at 14:36, Rory Walsh  wrote:
>>>>>>>>>>
>>>>>>>>>>> FUNC size is 336, and MYFLT size is 4 when it hits that.
>>>>>>>>>>>
>>>>>>>>>>> On 3 February 2014 13:46, Michael Gogins 
>>>>>>>>>>> wrote:
>>>>>>>>>>>> I didn't have time to get to this yesterday, but I should be able to
>>>>>>>>>>>> this
>>>>>>>>>>>> evening.
>>>>>>>>>>>>
>>>>>>>>>>>> Regards,
>>>>>>>>>>>> Mike
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> -----------------------------------------------------
>>>>>>>>>>>> Michael Gogins
>>>>>>>>>>>> Irreducible Productions
>>>>>>>>>>>> http://michaelgogins.tumblr.com
>>>>>>>>>>>> Michael dot Gogins at gmail dot com
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> On Mon, Feb 3, 2014 at 8:06 AM, Victor Lazzarini
>>>>>>>>>>>> 
>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>> Also you could add this to check out the size of FUNC
>>>>>>>>>>>>>
>>>>>>>>>>>>> csoundMessage(csound, "FUNC size= %d MYFLT* size = %d \n",
>>>>>>>>>>>>> sizeof(FUNC),
>>>>>>>>>>>>> sizeof(MYFLT*));
>>>>>>>>>>>>>
>>>>>>>>>>>>> Victor
>>>>>>>>>>>>> On 3 Feb 2014, at 13:02, Victor Lazzarini 
>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> yes, I had discarded that as Rory had said that fp hadn't changed.
>>>>>>>>>>>>>> Now
>>>>>>>>>>>>>> it's clearer.
>>>>>>>>>>>>>> I wonder if there is a header mismatch because that part of the
>>>>>>>>>>>>>> code had
>>>>>>>>>>>>>> changed
>>>>>>>>>>>>>> and the FGDATA structure is now different. If somehow the compiler
>>>>>>>>>>>>>> is
>>>>>>>>>>>>>> seeing an
>>>>>>>>>>>>>> old csoundCore.h, that could be the reason.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Rory, can you make sure there is only one csoundCore.h  in your
>>>>>>>>>>>>>> system
>>>>>>>>>>>>>> and that
>>>>>>>>>>>>>> is the latest one?
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Victor
>>>>>>>>>>>>>> On 3 Feb 2014, at 12:43, jpff@cs.bath.ac.uk wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Does not make sense to me but that information suggests that the
>>>>>>>>>>>>>>> memset is clearing too much.
>>>>>>>>>>>>>>> ==John
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Quoting Rory Walsh :
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> One thing I can see now with a better debug environment is that
>>>>>>>>>>>>>>>> ftp->ftable is not the same each time. First time through it's
>>>>>>>>>>>>>>>> ftable
>>>>>>>>>>>>>>>> 0x2b400a0 and the next time gen10 is called it's 0x0. Apologies
>>>>>>>>>>>>>>>> for
>>>>>>>>>>>>>>>> not catching that before. GDB from the command line is a
>>>>>>>>>>>>>>>> nightmare.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On 3 February 2014 12:04, Rory Walsh  wrote:
>>>>>>>>>>>>>>>>> Line 2295 seems to be the problem:
>>>>>>>>>>>>>>>>> memset((void*) ftp, 0, sizeof(FUNC)-sizeof(MYFLT*)); /* leaving
>>>>>>>>>>>>>>>>> table! */
>>>>>>>>>>>>>>>>> Commenting it out results in no segfaults.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common
>>>>>>>>>>>> Pitfalls.
>>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>>
>>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>>
>>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>>>> Read the Whitepaper.
>>>>>>>>>>
>>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>>> _______________________________________________
>>>>>>>>>> Csound-devel mailing list
>>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>>> Read the Whitepaper.
>>>>>>>>>
>>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>>> _______________________________________________
>>>>>>>>> Csound-devel mailing list
>>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>>> Read the Whitepaper.
>>>>>>>>
>>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Managing the Performance of Cloud-Based Applications
>>>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>>>> Read the Whitepaper.
>>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Managing the Performance of Cloud-Based Applications
>>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>>> Read the Whitepaper.
>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Managing the Performance of Cloud-Based Applications
>>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>>> Read the Whitepaper.
>>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Managing the Performance of Cloud-Based Applications
>>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>>> Read the Whitepaper.
>>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> Managing the Performance of Cloud-Based Applications
>> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
>> Read the Whitepaper.
>> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
>
>
>
>
> ------------------------------------------------------------------------------
> Managing the Performance of Cloud-Based Applications
> Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
> Read the Whitepaper.
> http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net