Re: [Mono-dev] What will happen if Dispose() hangs?

2015-01-27 Thread Greg Najda
Regarding the TcpClient timeouts, if you are setting the timeout before connecting, it is ignored. That is a bug. See https://bugzilla.xamarin.com/show_bug.cgi?id=25365. As a workaround you can set the timeout after connecting. On Mon, Jan 26, 2015 at 11:12 PM, Edward Ned Harvey (mono)

Re: [Mono-dev] FastCGI Performance

2014-04-06 Thread Greg Najda
Someone looked into Mono FastCGI performance a couple months ago and made a series of blog posts: http://forcedtoadmin.blogspot.com/2013/11/servicestack-performance-in-mono-p1.html http://forcedtoadmin.blogspot.com/2013/11/servicestack-performance-in-mono-p2.html

Re: [Mono-dev] problem compiling mono

2013-08-02 Thread Greg Najda
*** You need Mono version 2.4 or better installed to build MCS *** Check mono README for information on how to bootstrap a Mono installation. As the message says, you need a working mono installed. On Wed, Jul 31, 2013 at 6:03 PM, alex ninos ninosa...@yahoo.com wrote: Hi I get this message

Re: [Mono-dev] Recommended software setup to develop and contribute C# code to Mono

2013-07-30 Thread Greg Najda
I get the same problem with MonoDevelop after installing from source to /usr/local. MonoDevelop 2.8.6.3 on KUbuntu 12.04. I'm also interested in hearing about development workflow for mscorlib.because I'm tackling some bugs myself. On Sun, Jul 28, 2013 at 1:27 AM, jean-michel.perr...@csiro.au

[Mono-dev] Unix console implementation

2013-07-30 Thread Greg Najda
I'm attempting to fix https://bugzilla.xamarin.com/show_bug.cgi?id=12552and https://bugzilla.xamarin.com/show_bug.cgi?id=12551. Console, ConsoleDriver, and the IConsoleDriver implementations make the flawed assumption that is console is a simple boolean value when standard input or standard output

Re: [Mono-dev] Help required on starting to contribute for mono for a newcomer

2013-07-11 Thread Greg Najda
What specific problems are you running into? On Wed, Jul 10, 2013 at 9:02 PM, Aravindh Sridharan yashvi...@gmail.comwrote: Hi All, I have been a .NET developer for the past 3 years and I am in complete love with C#. I was very interested in mono from the beginning but only now got a

Re: [Mono-dev] Compiling on Windows

2013-07-10 Thread Greg Najda
at 11:22 PM, Greg Najda gregna...@gmail.com wrote: Following up on this, I finally got it figured it. The length of my checkout directory is too long at 49 chars, which is not really that long. I did some digging and found that Mono uses GetFileAttributes to check for the existence of a file

Re: [Mono-dev] Compiling on Windows

2013-07-09 Thread Greg Najda
-project.com/Wrench/index.aspx?show_all=true shows the Windows build as still broken so this was all with the last revision that Wrench shows to successfully build. On Thu, Jun 27, 2013 at 10:24 PM, Greg Najda gregna...@gmail.com wrote: I'm new to git. I'm using Atlassian SourceTree as a git gui. I'm

Re: [Mono-dev] Compiling on Windows

2013-06-27 Thread Greg Najda
in the build: make[3]: *** No rule to make target `mono-sgen', needed by `mono'. Stop. On Wed, Jun 26, 2013 at 11:12 AM, Rodrigo Kumpera kump...@gmail.com wrote: Update your git submodules. On Tue, Jun 25, 2013 at 10:05 PM, Greg Najda gregna...@gmail.com wrote: I'm running into some trouble

[Mono-dev] Compiling on Windows

2013-06-25 Thread Greg Najda
I'm running into some trouble compiling Mono on Windows. Here are the steps I followed: 1. Do a git clone (using 1b5ef4d3df262c66f58596bda152db5f4c34741c, Add a GSHAREDVT_REG_IREG return marshalling convention on ARM., 2013-06-23) 2. Install cygwin. Include packages: autoconf, automake, bison,

Re: [Mono-dev] sub-process invocation on posix

2013-06-10 Thread Greg Najda
The Windows CreateProcesshttp://msdn.microsoft.com/en-us/library/windows/desktop/ms682425%28v=vs.85%29.aspxfunction takes command line arguments as a single string. This detail leaked into the .NET Process class. Windows programs with a