[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2020-01-16 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8273

Mathias LANG  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 CC||pro.mathias.l...@gmail.com
 Resolution|--- |FIXED

--- Comment #4 from Mathias LANG  ---
This issue has been fixed, all the SC constant are here and we have definitions
for various BSD flavors.

--


[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2017-01-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8273

Andrei Alexandrescu  changed:

   What|Removed |Added

   Assignee|a...@lycus.org  |nob...@puremagic.com

--


[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2016-10-16 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8273

Andrei Alexandrescu  changed:

   What|Removed |Added

   Keywords||bootcamp
 CC||and...@erdani.com

--


[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2012-10-09 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8273


Alex R�nne Petersen  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||a...@lycus.org
 AssignedTo|nob...@puremagic.com|a...@lycus.org


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


[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2012-06-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8273



--- Comment #3 from Alex R�nne Petersen  2012-06-25 00:21:29 
CEST ---
The enums also seem to be severely lacking on OS X (same identifiers).

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


[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2012-06-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8273


Walter Bright  changed:

   What|Removed |Added

   Severity|normal  |enhancement


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


[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2012-06-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8273



--- Comment #2 from Alex R�nne Petersen  2012-06-20 22:00:54 
CEST ---
More specifically, all the _SC_* constants that are specified in POSIX
(_SC_PAGESIZE for example) are not there (but are in unistd.h). Note that they
are there for Linux, but not FreeBSD (and also note that FreeBSD's definitions
are completely different).

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


[Issue 8273] FreeBSD core.sys.posix.unistd enums severely lacking

2012-06-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8273


Walter Bright  changed:

   What|Removed |Added

 CC||bugzi...@digitalmars.com


--- Comment #1 from Walter Bright  2012-06-20 
12:59:41 PDT ---
Which ones are you talking about? I checked these:

else version( FreeBSD )
{
enum F_OK   = 0;
enum R_OK   = 0x04;
enum W_OK   = 0x02;
enum X_OK   = 0x01;

enum F_ULOCK= 0;
enum F_LOCK = 1;
enum F_TLOCK= 2;
enum F_TEST = 3;
}

from unistd.d and they are correct.

Please be specific about what is in error.

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