FD_SET Problem
    Andrew Wiley 
    debio264 at gmail.com
       
    Sun Feb  6 21:30:01 PST 2011
    
    
  
I'm on 64 bit linux (though with a self-built 32 bit DMD), and this testcase
is failing for me:
import std.stdio;
import core.sys.posix.sys.select;
int main(string[] args) {
   fd_set fdset;
   FD_SET(3, &fdset);
   assert(FD_ISSET(3, &fdset));
   return 0;
}
The same program works perfectly with GDC. Is this a DMD bug, or am I just
missing something?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puremagic.com/pipermail/digitalmars-d/attachments/20110206/18205c40/attachment.html>
    
    
More information about the Digitalmars-d
mailing list