#include <netat/adsp.h>
#include <netat/adsp_internal.h>
-extern atlock_t adspgen_lock;
/*
* InitContinue
CCBPtr sp;
struct adspcmd *pb;
{
- int s;
/* Save connection's socket # in CCB */
sp->localSocket = pb->socket;
/*
* Link the new ccb onto queue. Must be done with interrupts off.
*/
- ATDISABLE(s, adspgen_lock);
qAddToEnd(AT_ADSP_STREAMS, sp); /* Put on linked list of connections */
- ATENABLE(s, adspgen_lock);
return;
}