GUIDEV_Usage.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
  8. *
  9. *              礐/GUI is protected by international copyright laws. Knowledge of the
  10. *              source code may not be used to write a similar product. This file may
  11. *              only be used in accordance with a license and should not be redistributed
  12. *              in any way. We appreciate your understanding and fairness.
  13. *
  14. ----------------------------------------------------------------------
  15. File        : GUIDev.C
  16. Purpose     : Implementation of memory devices
  17. ---------------------------END-OF-HEADER------------------------------
  18. */
  19. #include <string.h>
  20. #include "GUI_Protected.h"
  21. #include "GUIDebug.h"
  22. /* Memory device capabilities are compiled only if support for them is enabled.*/ 
  23. #if GUI_SUPPORT_MEMDEV
  24. /*
  25.   *****************************************************************
  26.   *
  27.   *              GUI_USAGE_Select
  28.   *
  29.   *****************************************************************
  30. Purpose:
  31.   Selects a usage object into the active memory device.
  32. */
  33. void GUI_USAGE_Select(GUI_USAGE_Handle hUsage) {
  34.   GUI_MEMDEV * pDev;
  35.   GUI_LOCK();
  36.   pDev = GUI_MEMDEV_h2p(GUI_Context.hDevData);
  37.   pDev->hUsage = hUsage;
  38.   GUI_UNLOCK();
  39. }
  40. /************************************************
  41. *
  42. *             DecUseCnt
  43. *
  44. *************************************************
  45. Purpose: Decrements the usage count and deletes the usage object if
  46.          the counter reaches 0.
  47. */
  48. void GUI_USAGE_DecUseCnt(GUI_USAGE_Handle  hUsage) {
  49.   GUI_USAGE* pThis;
  50.   GUI_LOCK();
  51.   pThis = GUI_USAGE_h2p(hUsage);
  52.   if (--pThis->UseCnt == 0) {
  53.     GUI_ALLOC_FREE(hUsage);
  54.   }
  55.   GUI_UNLOCK();
  56. }
  57. #else
  58. void GUIDEV_Usage(void) {} /* avoid empty object files */
  59. #endif /* GUI_SUPPORT_MEMDEV */