Thread overview
[Issue 4643] New: Shared values are unwritable
Aug 14, 2010
Simen Kjaeraas
Sep 04, 2010
David Simcha
August 14, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4643

           Summary: Shared values are unwritable
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: major
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: simen.kjaras@gmail.com


--- Comment #0 from Simen Kjaeraas <simen.kjaras@gmail.com> 2010-08-14 03:09:59 PDT ---
shared int n;

void main( ) {
  writeln( n );
}

This program fails with:

E:\DMD\DMD2\windows\bin\..\..\src\phobos\std\format.d(306): Error: cannot
implic
itly convert expression (& arg) of type shared(int)* to const(void)*

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
September 04, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4643


David Simcha <dsimcha@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dsimcha@yahoo.com


--- Comment #1 from David Simcha <dsimcha@yahoo.com> 2010-09-04 09:02:33 PDT ---
http://dsource.org/projects/phobos/changeset/1957

Fixed for shared values w/o aliasing.  For shared values w/ aliasing, it shouldn't work because if one thread tries to write the value while another thread modifies it, Bad Things Will Happen (TM).

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
December 13, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4643


Lars T. Kyllingstad <bugzilla@kyllingen.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@kyllingen.net
         Resolution|                            |FIXED


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------