Re: [Mono-dev] Order problem in runtime shutdown flow

2013-01-14 Thread Shay Rojansky
Does anyone have time to review this? I know this is bothering people on NLog and could be interfering with other programs' shutdown flows as well... On Tue, Dec 4, 2012 at 5:30 PM, Rodrigo Kumpera kump...@gmail.com wrote: Hi Shay, I'll be reviewing your changes later this week, sorry for

Re: [Mono-dev] Order problem in runtime shutdown flow

2013-01-14 Thread Rodrigo Kumpera
I'll try to review it in time for mono 3.0.4. On Mon, Jan 14, 2013 at 3:08 AM, Shay Rojansky r...@roji.org wrote: Does anyone have time to review this? I know this is bothering people on NLog and could be interfering with other programs' shutdown flows as well... On Tue, Dec 4, 2012 at

Re: [Mono-list] ASCII bytes to string?

2013-01-14 Thread mickeyf
Duh... Of course. It was those sneaky little invisible null characters. I was careful to read only as many bytes as I needed from the stream, but the buffer I read them into was (intentionally) oversized and I was looking at everything in it... Thanks! -- View this message in context:

Re: [Mono-list] libc.so vs libc.so.6

2013-01-14 Thread Jonathan Pryor
On Jan 14, 2013, at 12:11 PM, tomason t...@creamysoft.com wrote: Is there a way to tell mono to look somewhere else for libc.so? Yes: an .exe.config with a dllmap/: http://mono-project.com/DllMap However, this really shouldn't be necessary; mono includes a default dllmap in

[Mono-list] remote debugging on ARM

2013-01-14 Thread mickeyf
I could use some help getting this going. I have found these two posts: http://stackoverflow.com/questions/10864548/debugging-mono-applications-directly-on-arm-target http://mono.1490590.n4.nabble.com/remote-debugging-a-hello-world-application-td4591791.html I set my magic environment variable

Re: [Mono-list] libc.so vs libc.so.6

2013-01-14 Thread Tom Mason
Thank you, Robert! Calling mono_config_parse(NULL) fixed my problem. Not all of the samples call it, and the one that does doesn't include the necessary header: mono/metadata/mono-config.h. But I added that too and all is well. Thanks, again! On Mon, Jan 14, 2013 at 9:42 AM, Robert Jordan