www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 11002] New: Compiler doesn't see std.sys.linux.epoll.

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=11002

           Summary: Compiler doesn't see std.sys.linux.epoll.
           Product: D
           Version: D2
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: aldacron gmail.com




import core.sys.linux.epoll;

void main() {
    epoll_event ev;
}


Error: undefined identifier epoll_event


import core.sys.linux.epoll : epoll_event;

void main() {
    epoll_event ev;
}


Error: module core.sys.linux.epoll import 'epoll_event' not found

This holds true for everything declared in the module. Other modules in
core.sys.linux are fine. Verified on 2.063 and 2.063.2.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Sep 09 2013
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=11002


Martin Nowak <code dawg.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |code dawg.eu
         Resolution|                            |FIXED



This is alread fixed in master by
https://github.com/D-Programming-Language/druntime/pull/489.

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