[Mono-dev] Cecil cannot read corlib

2008-07-07 Thread Harald Krapfenbauer
Hi Martin et al., I made some progress with the debugger on a MIPS platform. Unfortunately, I'm facing a problem with the Cecil library currently. When it tries to read the symbols of the corlib (Cecil.AssemblyFactory.GetAssembly()), the following error occurs: Cannot load symbol file

Re: [Mono-dev] Cecil cannot read corlib

2008-07-07 Thread Jb Evain
Hey, On 7/7/08, Harald Krapfenbauer [EMAIL PROTECTED] wrote: I made some progress with the debugger on a MIPS platform. Unfortunately, I'm facing a problem with the Cecil library currently. When it tries to read the symbols of the corlib (Cecil.AssemblyFactory.GetAssembly()), the

[Mono-dev] [PATCH] Thread.Interrupt bug.

2008-07-07 Thread Bill Holmes
Hello All, I have a small threading patch that needs reviewed. Also contained in this patch are two unit tests that the changes to threads.c are meant to address. -bill threadInterrupt.diff Description: Binary data ___ Mono-devel-list mailing list

Re: [Mono-dev] [PATCH] Thread.Interrupt bug.

2008-07-07 Thread Zoltan Varga
Hi, This is ok to check in. Zoltan 2008/7/7 Bill Holmes [EMAIL PROTECTED]: Hello All, I have a small threading patch that needs reviewed. Also contained in this patch are two unit tests that the changes to threads.c are meant to address. -bill

Re: [Mono-dev] Streaming with Moonlight/Silverlight vs Flash

2008-07-07 Thread Rolf Bjarne Kvinge
Hi Federico, I am about to choose the technology that will be used during the next two years to build the ESOF2010 web site (if you're curious about ESOF just check this year website, http://www.esof2008.org/). The project for 2010 includes a lot of streaming using preferably open protocols

Re: [Mono-dev] Mono.Addins suppress console window showing

2008-07-07 Thread Lluis Sanchez Gual
Fixed. Thanks! El dv 04 de 07 de 2008 a les 01:11 +0300, en/na Vladimir Dimitrov va escriure: Hello guys, Recently I started using Mono.Addins in my application and it looks very good. But as the application is primary used under windows (should be working fine under Linux too) I get

[Mono-dev] [PATCH] Winx64 stack cleanup for calls

2008-07-07 Thread Bill Holmes
Hello All, Attached (cleanStack_08_07_07.diff) is a small patch that should be specific to Winx64 only that will cleanup the stack after each call emitted from mono_arch_output_basic_block. The calling convention on Winx64 requires that the caller always cleans the stack. (At least as far as I

Re: [Mono-dev] [PATCH] Winx64 stack cleanup for calls

2008-07-07 Thread Zoltan Varga
Hi, It might be easier to define IS_STDCALL as FALSE on windows, since afaik there is no stdcall calling convention on winx64. Zoltan 2008/7/7 Bill Holmes [EMAIL PROTECTED]: Hello All, Attached (cleanStack_08_07_07.diff) is a small patch that should be specific to Winx64

Re: [Mono-dev] [PATCH] Winx64 stack cleanup for calls

2008-07-07 Thread Bill Holmes
Zoltan, Agreed. I have attached an update. -bill On Mon, Jul 7, 2008 at 3:03 PM, Zoltan Varga [EMAIL PROTECTED] wrote: Hi, It might be easier to define IS_STDCALL as FALSE on windows, since afaik there is no stdcall calling convention on winx64. Zoltan 2008/7/7 Bill

Re: [Mono-dev] [PATCH] Exceptions on Winx64

2008-07-07 Thread Bill Holmes
Hello All, I have made another change to patch. The difference from the last is that the unwindinfo pointer has been moved from MonoCompile to MonoCompileArch struct. -bill On Tue, Jun 24, 2008 at 2:59 PM, Bill Holmes [EMAIL PROTECTED] wrote: I have updated the patch with Robert's suggestion.

Re: [Mono-dev] [PATCH] Winx64 stack cleanup for calls

2008-07-07 Thread Zoltan Varga
Hi, This is ok to check in. Zoltan On Mon, Jul 7, 2008 at 9:22 PM, Bill Holmes [EMAIL PROTECTED] wrote: Zoltan, Agreed. I have attached an update. -bill On Mon, Jul 7, 2008 at 3:03 PM, Zoltan Varga [EMAIL PROTECTED] wrote: Hi, It might be easier to define IS_STDCALL as FALSE

[Mono-dev] System.Console problem

2008-07-07 Thread Johannes Drachenfels
Hello all, I am new here, hopefully in the right list :-) and I have a problem with using system.console under MONO: I try to reset the width and height of the console: Console.WindowHeight = 24

Re: [Mono-dev] System.Console problem

2008-07-07 Thread M. David Peterson
2008/7/7 Johannes Drachenfels [EMAIL PROTECTED]: I want to write a command line interface for a linux system which should be used over ssh instead of a shell… How are you defining the difference between the command line and a shell? Is your end goal simply to provide a way to invoke commands