[Cs-dev] Statics again
Date | 2006-11-03 09:03 |
From | jpff |
Subject | [Cs-dev] Statics again |
I encapsulated a load of statics in winFLTK; no deallocatation yet but it seems to work for me. Any more statics found just report them here. ==John ffitch ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2006-11-08 06:21 |
From | Anthony Kozar |
Subject | Re: [Cs-dev] Statics again |
Sorry -- have been busy and forgot to reply to this earlier ... What about this struct in remote.c? static REMOT_BUF CLsendbuf; /* rt evt output Communications buffer */ (Although, I am wondering if remote events will work in multiple instances anyways since the port # seems to be hardwired). Also, I believe that the following lines in remote.h no longer refer to real variables: extern int *insrfd; extern int *chnrfd; extern int insrfd_count; extern int chnrfd_count; Anthony jpff wrote on 11/3/06 4:03 AM: > I encapsulated a load of statics in winFLTK; no deallocatation yet but > it seems to work for me. Any more statics found just report them here. > ==John ffitch ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2006-11-08 10:13 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] Statics again |
This can be easily moved. I can do it, but I reckon John would have probably done it by now. The port number thing is more concerning. Where is it hard-wired? I think we will need to change it. Victor At 06:21 08/11/2006, you wrote: >Sorry -- have been busy and forgot to reply to this earlier ... > >What about this struct in remote.c? > >static REMOT_BUF CLsendbuf; /* rt evt output Communications buffer */ > > >(Although, I am wondering if remote events will work in multiple instances >anyways since the port # seems to be hardwired). > > >Also, I believe that the following lines in remote.h no longer refer to real >variables: > >extern int *insrfd; >extern int *chnrfd; >extern int insrfd_count; >extern int chnrfd_count; > > >Anthony > > >jpff wrote on 11/3/06 4:03 AM: > > > I encapsulated a load of statics in winFLTK; no deallocatation yet but > > it seems to work for me. Any more statics found just report them here. > > ==John ffitch > > >------------------------------------------------------------------------- >Using Tomcat but need to do more? Need to support web services, security? >Get stuff done quickly with pre-integrated technology to make your job easier >Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >_______________________________________________ >Csound-devel mailing list >Csound-devel@lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/csound-devel Victor Lazzarini Music Technology Laboratory Music Department National University of Ireland, Maynooth ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2006-11-08 17:34 |
From | Anthony Kozar |
Subject | Re: [Cs-dev] Statics again |
In remote.h: #define REMOT_PORT 40002 Victor Lazzarini wrote on 11/8/06 5:13 AM: > The port number thing is more concerning. Where is it hard-wired? > I think we will need to change it. ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |