Re: [Mono-dev] OracleClient.Oci and GC

2014-08-26 Thread Jonathan Pryor
On Aug 25, 2014, at 2:05 PM, Neale Ferguson nealefergu...@verizon.net wrote: Do you mean mine not having protected virtual? Dispose(bool) doesn't need to be `protected virtual` unless you plan on supporting inheritance. Rephrased: if your type is sealed, it doesn't need to be `protected

Re: [Mono-dev] OracleClient.Oci and GC

2014-08-26 Thread Neale Ferguson
Yeah, it is a sealed class which is why I didn't do protected virtual, so I'm wondering to what your initial remark referred: Idiomatic IDisposable implementation is slightly different from what you have. On Aug 26, 2014, at 1:09 AM, Jonathan Pryor jonpr...@vt.edu wrote: On Aug 25, 2014, at

[Mono-dev] Known issue with xbuild and line-feeds in Cygwin?

2014-08-26 Thread Bob Summerwill
I have inherited a shell script with a horrible line of sed in it which OS X doesn't like, to deal with line-end issues in xbuild under Cygwin ... # Check if we are running under Windows(cygwin) OR *nix, and use xbuild OR MSBuild.exe accordingly set isRunningCygwin=`uname | grep CYGWIN` if (

Re: [Mono-dev] Known issue with xbuild and line-feeds in Cygwin?

2014-08-26 Thread Marius Ungureanu
http://chess.eecs.berkeley.edu/softdevel/faq/5.html This should solve your cygwin issues. Make the shell ignore CR. Bob Summerwill b...@summerwill.net wrote: I have inherited a shell script with a horrible line of sed in it which OS X doesn't like, to deal with line-end issues in xbuild

Re: [Mono-dev] Known issue with xbuild and line-feeds in Cygwin?

2014-08-26 Thread Bob Summerwill
Thanks for the link, Marius. The resolution for this particular case turned out to be trying to invoke MSBuild.exe from within Cygwin with a Linux-style path to the SLN, not related to line-endings.Seems like that sed was fixing problems in an older version of xbuild and wasn't needed

[Mono-dev] Performance tests/benchmarks for mono

2014-08-26 Thread Liwei Peng
Hi Mono team, I am evaluating mono for Linux (Ubuntu). One of my plans is to evaluate mono CLR perf compared with Windows .NET CLR perf. Questions: 1) What perf/benchmark tests are available for me to run for mono? 2) Can you share some docs/links for them? Thanks, Liwei

Re: [Mono-dev] Performance tests/benchmarks for mono

2014-08-26 Thread Konaju Games (Dev)
I would suggest reading one of Miguel's recent blog posts about the Mono Performance Team that is currently working on improving performance. http://tirania.org/blog/archive/2014/Jul-23.html On 27 August 2014 08:26, Liwei Peng liwei.p...@microsoft.com wrote: Hi Mono team, I am evaluating