X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/e5568f75972dfc723778653c11cb6b4dc825716a..e2fac8b15b12a7979f72090454d850e612fc5b13:/bsd/netat/adsp_Status.c?ds=sidebyside diff --git a/bsd/netat/adsp_Status.c b/bsd/netat/adsp_Status.c index 46880508b..4643504b9 100644 --- a/bsd/netat/adsp_Status.c +++ b/bsd/netat/adsp_Status.c @@ -1,23 +1,29 @@ /* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * - * @APPLE_LICENSE_HEADER_START@ + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * - * The contents of this file constitute Original Code as defined in and - * are subject to the Apple Public Source License Version 1.1 (the - * "License"). You may not use this file except in compliance with the - * License. Please obtain a copy of the License at - * http://www.apple.com/publicsource and read it before using this file. + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. The rights granted to you under the License + * may not be used to create, or enable the creation or redistribution of, + * unlawful or unlicensed copies of an Apple operating system, or to + * circumvent, violate, or enable the circumvention or violation of, any + * terms of an Apple operating system software license agreement. * - * This Original Code and all software distributed under the License are - * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the - * License for the specific language governing rights and limitations - * under the License. + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. * - * @APPLE_LICENSE_HEADER_END@ + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * dspStatus.c @@ -45,6 +51,8 @@ #include #include +int calcSendQ(CCBPtr); + /* * calcSendFree * @@ -66,6 +74,7 @@ int CalcSendQFree(sp) /* (CCBPtr sp) */ return bytes; } +int calcSendQ(sp) CCBPtr sp; { @@ -73,13 +82,13 @@ calcSendQ(sp) int bytes = 0; if (sp->sData) { /* There is data in buffer */ - if (mp = sp->sbuf_mb) { + if ((mp = sp->sbuf_mb)) { do { bytes += gbuf_msgsize(mp); mp = gbuf_next(mp); } while (mp); } - if (mp = sp->csbuf_mb) + if ((mp = sp->csbuf_mb)) bytes += gbuf_msgsize(mp); } return bytes; @@ -106,9 +115,7 @@ int adspStatus(sp, pb) /* (DSPPBPtr pb) */ CCBPtr sp; register struct adspcmd *pb; { - short err; short bytes; - int s; if (sp == 0) { pb->ioResult = errRefNum; @@ -116,7 +123,6 @@ int adspStatus(sp, pb) /* (DSPPBPtr pb) */ } pb->u.statusParams.ccbPtr = (TPCCB)sp; - ATDISABLE(s, sp->lock); /* * pending bytes in send queue @@ -142,9 +148,8 @@ int adspStatus(sp, pb) /* (DSPPBPtr pb) */ /* available buffer space in receive queue */ pb->u.statusParams.recvQFree = CalcRecvWdw(sp); - ATENABLE(s, sp->lock); pb->ioResult = 0; - adspioc_ack(0, pb->ioc, pb->gref); + adspioc_ack(0, (gbuf_t *)pb->ioc, pb->gref); return 0; }