digitalmars.D - RE: synchronized (this[.classinfo]) in druntime and phobos
- Andrew Wiley <wiley.andrew.j gmail.com> Jun 03 2012
--e89a8f2353bb74b60604c1988ad0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable *>From:* mta`chrono <chrono mta-international.net>*Sent:* Sunday, June 3, 2012 14:38:31 *To:* digitalmars-d puremagic.com *Subject:* Re: synchronized (this[.classinfo]) in druntime and phobos Am 30.05.2012 11:11, schrieb deadalnix:D already have much better tools that the one java provide (std.concurency, std.parallelism, TLS by default, transitive type qualifiers, . . .) that most these thing taken from java don't make any sense now. For instance, what is the point of being able to lock on any object when most of them are thread local ??
Right! Locking on non-TLS objects doesn't make sense. Perhaps only shared objects should be synchronizeable and thus contain a monitor / pointer to a monitor.
auto sthingy =3D cast(shared)thingy; As long as we support casting to/from shared, you can=92t eliminate the monitor pointer in any object. Sent from my *Windows 8 PC* <http://windows.microsoft.com/consumer-preview> --e89a8f2353bb74b60604c1988ad0 Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable <html><head></head><body><div style=3D"font-family:Calibri,"Segoe UI&q= uot;,Meiryo,"Microsoft YaHei UI","Microsoft JhengHei UI"= ;,"Malgun Gothic","Khmer UI","Nirmala UI",Tun= ga,"Lao UI",Ebrima,sans-serif;font-size:14.66px"> <div class=3D" hide-outline">=A0</div><div class=3D" hide-outline"><strong>= >From:</strong>=A0mta`chrono <<a href=3D"mailto:chrono mta-internatio= nal.net">chrono mta-international.net</a>><br> ><strong>Sent:</stron= g>=A0Sunday, June 3, 2012 14:38:31<br> ><strong>To:</strong>=A0<a href=3D"mailto:digitalmars-d puremagic.com"=digitalmars-d puremagic.com</a><br> ><strong>Subject:</strong>=A0Re: s=
></div> <div class=3D" hide-outline">>Am 30.05.2012 11:11, schrieb deadalnix:<br=>> <br>>> D already have much better tools that the one java p=
tive type<br> >> qualifiers, . . .) that most these thing taken from java don't= make any<br>>> sense now.<br>>> <br>>> For instance, wha= t is the point of being able to lock on any object when<br>>> most of= them are thread local ??<br> > <br>> Right! Locking on non-TLS objects doesn't make sense. Per= haps only<br>> shared objects should be synchronizeable and thus contain= a monitor /<br>> pointer to a monitor.<br></div><div><div class=3D" hid= e-outline"> auto thingy =3D new Thing();</div><div class=3D" hide-outline">auto sthingy= =3D cast(shared)thingy;</div><div class=3D" hide-outline">=A0</div><div cl= ass=3D" hide-outline">As long as we support casting to/from shared, you can= =92t eliminate the monitor pointer in any object.</div> <div class=3D" hide-outline">=A0</div><div class=3D" hide-outline">=A0</div=<div class=3D" hide-outline">Sent from my <a href=3D"http://windows.micros=
</a></div>
--e89a8f2353bb74b60604c1988ad0--
Jun 03 2012
On 04-06-2012 00:00, Andrew Wiley wrote:*>From:* mta`chrono <chrono mta-international.net <mailto:chrono mta-international.net>> >*Sent:* Sunday, June 3, 2012 14:38:31 >*To:* digitalmars-d puremagic.com <mailto:digitalmars-d puremagic.com> >*Subject:* Re: synchronized (this[.classinfo]) in druntime and phobos > > >Am 30.05.2012 11:11, schrieb deadalnix: >> >> D already have much better tools that the one java provide >> (std.concurency, std.parallelism, TLS by default, transitive type >> qualifiers, . . .) that most these thing taken from java don't make any >> sense now. >> >> For instance, what is the point of being able to lock on any object when >> most of them are thread local ?? > > Right! Locking on non-TLS objects doesn't make sense. Perhaps only > shared objects should be synchronizeable and thus contain a monitor / > pointer to a monitor. auto thingy = new Thing(); auto sthingy = cast(shared)thingy; As long as we support casting to/from shared, you can’t eliminate the monitor pointer in any object. Sent from my _Windows 8 PC_ <http://windows.microsoft.com/consumer-preview>
(And let me just add: As long as shared is as impractical as it is, we shouldn't remove that ability.) -- Alex Rønne Petersen alex lycus.org http://lycus.org
Jun 03 2012








=?windows-1252?Q?Alex_R=F8nne_Petersen?= <alex lycus.org>