Re: What does interruptibility mean exactly?

2010-06-15 Thread scooter . phd
From: Bas van Dijk Date: Tue, 15 Jun 2010 20:36:44 To: Simon Marlow Cc: ; Don Stewart Subject: Re: What does interruptibility mean exactly? On Tue, Jun 15, 2010 at 12:41 PM, Simon Marlow wrote: > On 15/06/2010 09:00, Bas van Dijk wrote: >> >> On Mon, Jun 14, 2010 at 11:20 PM

Re: What does interruptibility mean exactly?

2010-06-15 Thread Bas van Dijk
On Tue, Jun 15, 2010 at 12:41 PM, Simon Marlow wrote: > On 15/06/2010 09:00, Bas van Dijk wrote: >> >> On Mon, Jun 14, 2010 at 11:20 PM, Don Stewart  wrote: >>> >>> v.dijk.bas: Hello, I've a short question about interruptible operations. In the following program is it poss

Re: What does interruptibility mean exactly?

2010-06-15 Thread Simon Marlow
On 15/06/2010 09:00, Bas van Dijk wrote: On Mon, Jun 14, 2010 at 11:20 PM, Don Stewart wrote: v.dijk.bas: Hello, I've a short question about interruptible operations. In the following program is it possible for 'putMVar' to re-throw asynchronous exceptions even when asynchronous exception ar

Re: What does interruptibility mean exactly?

2010-06-15 Thread Bas van Dijk
On Mon, Jun 14, 2010 at 11:20 PM, Don Stewart wrote: > > v.dijk.bas: >> Hello, >> >> I've a short question about interruptible operations. In the following >> program is it possible for 'putMVar' to re-throw asynchronous >> exceptions even when asynchronous exception are blocked/masked? >> >> ne

Re: What does interruptibility mean exactly?

2010-06-14 Thread Don Stewart
v.dijk.bas: > Hello, > > I've a short question about interruptible operations. In the following > program is it possible for 'putMVar' to re-throw asynchronous > exceptions even when asynchronous exception are blocked/masked? > > newEmptyMVar >>= \mv -> block $ putMVar mv x > > The documentat

What does interruptibility mean exactly?

2010-06-14 Thread Bas van Dijk
Hello, I've a short question about interruptible operations. In the following program is it possible for 'putMVar' to re-throw asynchronous exceptions even when asynchronous exception are blocked/masked? newEmptyMVar >>= \mv -> block $ putMVar mv x The documentation in Control.Exception about