Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.7 KiB

  1. /************************************************************************/
  2. /* */
  3. /* Title : SPEED support funcs for INTERNAL IOCTLs */
  4. /* */
  5. /* Author : N.P.Vassallo */
  6. /* */
  7. /* Creation : 14th October 1998 */
  8. /* */
  9. /* Version : 1.0.0 */
  10. /* */
  11. /* Description : Support functions to support the */
  12. /* INTERNAL IOCTLs for specific hardware: */
  13. /* XXX_SetHandFlow */
  14. /* */
  15. /************************************************************************/
  16. /* History...
  17. 1.0.0 14/20/98 NPV Creation.
  18. */
  19. #include "precomp.h"
  20. /*****************************************************************************
  21. ***************************** ****************************
  22. ***************************** XXX_SetHandFlow ****************************
  23. ***************************** ****************************
  24. ******************************************************************************
  25. prototype: void XXX_SetHandFlow(IN PPORT_DEVICE_EXTENSION pPort, IN PSERIAL_IOCTL_SYNC pS)
  26. description: Call to set the handshaking and flow control
  27. parameters: pPort points to the port device extension structure
  28. pS points to a serial ioctl synchronization structure
  29. returns: STATUS_SUCCESS
  30. */
  31. void XXX_SetHandFlow(IN PPORT_DEVICE_EXTENSION pPort,IN PSERIAL_IOCTL_SYNC pS)
  32. {
  33. PCARD_DEVICE_EXTENSION pCard = pPort->pParentCardExt;
  34. KeSynchronizeExecution(pCard->Interrupt, SerialSetHandFlow, pS);
  35. } /* XXX_SetHandFlow */
  36. /* End of IO8_IIOC.C */