I notice that storeAufsClose does this:
    if (storeAufsSomethingPending(sio)) {
        aiostate->flags.close_request = 1;
        return;
    }
and storeAufsReadDone does this:
    aiostate->flags.inreaddone = 0;
    if (aiostate->flags.close_request)
        storeAufsIOCallback(sio, errflag);
So my question is...
Can these two run close enough together that storeAufsSomethingPending 
returns true, but storeAufsClose doesn't set the flag in time to catch 
storeAufsReadDone?
        -- Brian
Received on Sat Sep 01 2001 - 15:59:55 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 17:02:01 MST