[Mono-list] Thread.Suspend

2003-02-01 Thread tapia
Hi. I'm coding a little app using System.Threading.Thread, and I've seen that the Suspend() method is not implemented. I'd like to contribute to Mono, and I think it's a good way, but I need some help. Well, that's what I did. Please, tell me what's wrong: This goes in mcs/class/corlib/System.T

Re: [Mono-list] Thread.Suspend

2003-02-01 Thread Dick Porter
On Sat, 2003-02-01 at 17:25, tapia wrote: > Hi. > > I'm coding a little app using System.Threading.Thread, and I've seen > that the Suspend() method is not implemented. Suspend() will probably never be implemented while we use the boehm gc lib. The reason is that boehm gc needs to suspend thread

Re: [Mono-list] Thread.Suspend

2003-02-02 Thread Martin Baulig
Dick Porter <[EMAIL PROTECTED]> writes: > On Sat, 2003-02-01 at 17:25, tapia wrote: > > Hi. > > > > I'm coding a little app using System.Threading.Thread, and I've seen > > that the Suspend() method is not implemented. > > Suspend() will probably never be implemented while we use the boehm gc >

Re: [Mono-list] Thread.Suspend

2003-02-02 Thread Dick Porter
On Sun, 2003-02-02 at 10:10, Martin Baulig wrote: > Can't we find some solution for this, ie. patch boehm a little bit. Distributing a custom version of libgc would not be my first choice. Long term, the plan is to write our own GC anyway. - Dick ___

Re: [Mono-list] Thread.Suspend

2003-02-02 Thread Martin Baulig
Dick Porter <[EMAIL PROTECTED]> writes: > On Sun, 2003-02-02 at 10:10, Martin Baulig wrote: > > Can't we find some solution for this, ie. patch boehm a little bit. > > Distributing a custom version of libgc would not be my first choice. Well, I think we should try to make a really simple and cle