Browse thread
Where's my non-classical shared memory concurrency technology?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Frédéric_Gava <gava@u...> |
| Subject: | Re: [Caml-list] Re: Where's my non-classical shared memory concurrency technology? |
> That wasn't my point. My point was that there is no return channel. > If you want to know when your write is done, you have to use a lock > or a memory barrier. Both are very expensive. Barriers of synchronisation are a little expensive (one of the main drawbacks with a too restricted way of communication) but have many advantages as deadlock free and possibility to optimized the "communications" (copy of the data in the shared memory or juste the pointer). FG