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

VxWorks

开发平台:

C/C++

  1. /* ctxcreat.c - xdr routines for coding/decoding WDB_CTX_CREATE_DESC struct */
  2. /* Copyright 1994-1998 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01f,22jan98,c_c Removed EXT_FUNC references.
  8. 01e,30jan96,elp changed xdr_TGT_ADDR_T in macro XDR_TGT_ADDR_T, added windll.h
  9. 01d,10jun95,pad Included rpc/rpc.h
  10. 01c,04apr95,ms new data types.
  11. 01b,06nov94,tpr added comments
  12. changed xdr function for the redirIn, redirOut and isTask fields
  13. 01a,03oct94,tpr written.
  14. */
  15. /*
  16. DESCRIPTION
  17. This module contains the eXternal Data Representation (XDR) routine
  18. for the WDB_CTX_CREATE_DESC structure of the WDB protocol.
  19. */
  20. /* includes */
  21. #include <rpc/rpc.h>
  22. #include "wdbP.h"
  23. /*******************************************************************************
  24. *
  25. * xdr_WDB_CTX_CREATE_DESC - code, decode od free the WDB_CTX_CREATE_DESC structure.
  26. *
  27. * This functions codes, decodes or frees the WDB_CTX_CREATE_DESC structure of the
  28. * WDB protocol.
  29. *
  30. * RETURNS:  TRUE if it succeeds, FALSE otherwise.
  31. */
  32. BOOL xdr_WDB_CTX_CREATE_DESC
  33.     (
  34.     XDR * xdrs, /* xdr handle */
  35.     WDB_CTX_CREATE_DESC *  objp /* pointer to the WDB_CTX_CREATE_DESC structure */
  36.     )
  37.     {
  38.     TGT_INT_T ix;
  39.     if (!xdr_enum (xdrs, (enum_t *)&objp->contextType))
  40. return (FALSE);
  41.     if (!xdr_TGT_ADDR_T (xdrs, &objp->stackBase))
  42. return (FALSE);
  43.     if (!xdr_UINT32 (xdrs, &objp->stackSize))
  44. return (FALSE);
  45.     if (!xdr_TGT_ADDR_T (xdrs, &objp->entry))
  46. return (FALSE);
  47.     for (ix = 0; ix < 10; ix++)
  48. {
  49. if (!xdr_TGT_INT_T (xdrs, &objp->args[ix]))
  50.     return (FALSE);
  51. }
  52.     if (!xdr_WDB_STRING_T (xdrs, &objp->name))
  53. return (FALSE);
  54.     if (!xdr_TGT_INT_T (xdrs, &objp->priority))
  55. return (FALSE);
  56.     if (!xdr_TGT_INT_T (xdrs, &objp->options))
  57. return (FALSE);
  58.     if (!xdr_TGT_INT_T (xdrs, &objp->redirIn))
  59. return (FALSE);
  60.     if (!xdr_TGT_INT_T (xdrs, &objp->redirOut))
  61. return (FALSE);
  62.     if (!xdr_TGT_INT_T (xdrs, &objp->redirErr))
  63. return (FALSE);
  64.     return (TRUE);
  65.     }