regs.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* regs.c - xdr filters for WDB_REG_READ_DESC and WDB_REG_WRITE_DESC structures */
  2. /* Copyright 1988-1994 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01c,10jun95,pad Included rpc/rpc.h
  8. 01b,04apr95,ms  new data types.
  9. 01a,20jan95,ms written.
  10. */
  11. /*
  12. DESCRIPTION
  13. This module contains the eXternal Data Representation (XDR) routine
  14. for the WDB_REG_READ_DESC and WDB_REG_READ_DESC structures of the WDB protocol.
  15. */
  16. /* includes */
  17. #include <rpc/rpc.h>
  18. #include "wdbP.h"
  19. /*******************************************************************************
  20. *
  21. * xdr_WDB_REG_READ_DESC - code, decode or free the WDB_REG_READ_DESC structure. 
  22. *
  23. * RETURNS: TRUE if it succeeds, FALSE otherwise.
  24. */
  25. BOOL xdr_WDB_REG_READ_DESC
  26.     (
  27.     XDR * xdrs,
  28.     WDB_REG_READ_DESC * objp
  29.     )
  30.     {
  31.     if (!xdr_enum (xdrs, (enum_t *)&objp->regSetType))
  32. return (FALSE);
  33.     if (!xdr_WDB_CTX (xdrs, &objp->context))
  34. return (FALSE);
  35.     if (!xdr_WDB_MEM_REGION (xdrs, &objp->memRegion))
  36. return (FALSE);
  37.     return (TRUE);
  38.     }
  39. /*******************************************************************************
  40. *
  41. * xdr_WDB_REG_WRITE_DESC - code, decode or free the WDB_REG_WRITE_DESC structure. 
  42. *
  43. * RETURNS: TRUE if it succeeds, FALSE otherwise.
  44. */
  45. BOOL xdr_WDB_REG_WRITE_DESC
  46.     (
  47.     XDR * xdrs,
  48.     WDB_REG_WRITE_DESC * objp
  49.     )
  50.     {
  51.     if (!xdr_enum (xdrs, (enum_t *)&objp->regSetType))
  52. return (FALSE);
  53.     if (!xdr_WDB_CTX (xdrs, &objp->context))
  54. return (FALSE);
  55.     if (!xdr_WDB_MEM_XFER (xdrs, &objp->memXfer))
  56. return (FALSE);
  57.     return (TRUE);
  58.     }