* net.cc (get_adapters_addresses): Drop FIXME part of comment.

This commit is contained in:
Christopher Faylor 2012-08-21 14:41:57 +00:00
parent 39d0171500
commit 0b1545eb3a
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2012-08-21 Christopher Faylor <me.cygwin2012@cgf.cx>
* net.cc (get_adapters_addresses): Drop FIXME part of comment.
2012-08-17 Christopher Faylor <me.cygwin2012@cgf.cx> 2012-08-17 Christopher Faylor <me.cygwin2012@cgf.cx>
* DevNotes: Add entry cgf-000016. * DevNotes: Add entry cgf-000016.

View File

@ -1696,9 +1696,7 @@ get_adapters_addresses (PIP_ADAPTER_ADDRESSES *pa_ret, ULONG family)
area. So, if we're running in a pthread with such a stack, we call area. So, if we're running in a pthread with such a stack, we call
GetAdaptersAddresses in a child thread with an OS-allocated stack. GetAdaptersAddresses in a child thread with an OS-allocated stack.
The OS allocates stacks bottom up, so chances are good that the new The OS allocates stacks bottom up, so chances are good that the new
stack will be located in the lower address area. stack will be located in the lower address area. */
FIXME: The problem is fixed in W8CP, but needs testing before W8 goes
gold. */
HANDLE thr = CreateThread (NULL, 0, call_gaa, &param, 0, NULL); HANDLE thr = CreateThread (NULL, 0, call_gaa, &param, 0, NULL);
if (!thr) if (!thr)
{ {