Re: core.sys.posix.sys.ioctl

2016-01-28 Thread tsbockman via Digitalmars-d-learn
On Thursday, 28 January 2016 at 06:15:54 UTC, sanjayss wrote: So I got round to doing this -- https://github.com/D-Programming-Language/druntime/pull/1485 -- it's not clear what happens now -- is there a set of people that reviews pull requests and comment on it or is it open to all? I shoul

Re: core.sys.posix.sys.ioctl

2016-01-27 Thread tsbockman via Digitalmars-d-learn
On Thursday, 28 January 2016 at 06:15:54 UTC, sanjayss wrote: So I got round to doing this -- https://github.com/D-Programming-Language/druntime/pull/1485 -- it's not clear what happens now -- is there a set of people that reviews pull requests and comment on it or is it open to all? Since y

Re: core.sys.posix.sys.ioctl

2016-01-27 Thread sanjayss via Digitalmars-d-learn
On Friday, 15 January 2016 at 21:49:38 UTC, Adam D. Ruppe wrote: On Friday, 15 January 2016 at 21:21:26 UTC, sanjayss wrote: Is the contribution process straightforward. For this, yes. Should be able to just fork druntime and edit the ioctl.d that exists to flesh it out to be more complete.

Re: core.sys.posix.sys.ioctl

2016-01-15 Thread Adam D. Ruppe via Digitalmars-d-learn
On Friday, 15 January 2016 at 21:21:26 UTC, sanjayss wrote: Is the contribution process straightforward. For this, yes. Should be able to just fork druntime and edit the ioctl.d that exists to flesh it out to be more complete. Make sure it matches the original C names, values, etc., and the

Re: core.sys.posix.sys.ioctl

2016-01-15 Thread sanjayss via Digitalmars-d-learn
On Friday, 15 January 2016 at 18:34:14 UTC, Adam D. Ruppe wrote: On Friday, 15 January 2016 at 18:32:22 UTC, sanjayss wrote: Is there any reason that this module is not complete for platforms other than Linux Nobody has written it up, except the parts they use. Is the contribution process st

Re: core.sys.posix.sys.ioctl

2016-01-15 Thread Adam D. Ruppe via Digitalmars-d-learn
On Friday, 15 January 2016 at 18:32:22 UTC, sanjayss wrote: Is there any reason that this module is not complete for platforms other than Linux Nobody has written it up, except the parts they use.

core.sys.posix.sys.ioctl

2016-01-15 Thread sanjayss via Digitalmars-d-learn
Is there any reason that this module is not complete for platforms other than Linux -- the ioctl() system call is common across all Unix-like OSes, so it doesn't make sense that this is only partially supported. (I am using the latest DMD).