2025-04-27 07:49:33 -04:00

51 lines
1.7 KiB
C

/************************************************************************/
/* */
/* Title : SPEED support funcs for INTERNAL IOCTLs */
/* */
/* Author : N.P.Vassallo */
/* */
/* Creation : 14th October 1998 */
/* */
/* Version : 1.0.0 */
/* */
/* Description : Support functions to support the */
/* INTERNAL IOCTLs for specific hardware: */
/* XXX_SetHandFlow */
/* */
/************************************************************************/
/* History...
1.0.0 14/20/98 NPV Creation.
*/
#include "precomp.h"
/*****************************************************************************
***************************** ****************************
***************************** XXX_SetHandFlow ****************************
***************************** ****************************
******************************************************************************
prototype: void XXX_SetHandFlow(IN PPORT_DEVICE_EXTENSION pPort, IN PSERIAL_IOCTL_SYNC pS)
description: Call to set the handshaking and flow control
parameters: pPort points to the port device extension structure
pS points to a serial ioctl synchronization structure
returns: STATUS_SUCCESS
*/
void XXX_SetHandFlow(IN PPORT_DEVICE_EXTENSION pPort,IN PSERIAL_IOCTL_SYNC pS)
{
PCARD_DEVICE_EXTENSION pCard = pPort->pParentCardExt;
KeSynchronizeExecution(pCard->Interrupt, SerialSetHandFlow, pS);
} /* XXX_SetHandFlow */
/* End of IO8_IIOC.C */