Re: win64 as orphan?

2014-06-09 Thread lurker via Digitalmars-d-learn
i agree with you, but you should have posted in "announce", so that adrei can use it for some marketing. i too wait now for a long, long time to use it with win64. i am also giving up - i guess it will stay a linux/apple show. maybe, as a multiple os compiler, you can use lazarus or code typhon.

Re: Sending a socket to another thread

2011-02-15 Thread lurker
> What platform and version of DMD? There was a bug in the Socket > implementation on Windows recently where the WinSock data was either > initialized or deinitialized multiple times. I don't remember the > details, but I remember having "weird crashes." Yes, Windows + dmd 2.51. > Yes, I've done

Sending a socket to another thread

2011-02-15 Thread lurker
I'd like to modify the listener sample to handle requests in separate threads but I'm experiencing weird crashes. Once a connection is established can I send() the relevant socket to another thread and receive() from there? Thanks

Generic container

2010-05-08 Thread lurker
Hello, first time visiting the newsgroup. I see in the manual that you can create built-in dictionaries like so: int[string] foo; Do you know of a way to store any value in a dictionary? In C# I can do something like this: Dictionary foo; I need a dictionary that can store any value, indexed b