ThreadsI.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: ThreadsI.h,v 1.4 2001/02/09 02:03:59 xorgcvs Exp $ */
  2. /************************************************************
  3. Copyright 1993 by Sun Microsystems, Inc. Mountain View, CA.
  4.                     All Rights Reserved
  5. Permission  to  use,  copy,  modify,  and  distribute   this
  6. software  and  its documentation for any purpose and without
  7. fee is hereby granted, provided that the above copyright no-
  8. tice  appear  in all copies and that both that copyright no-
  9. tice and this permission notice appear in  supporting  docu-
  10. mentation,  and  that the name Sun not be used in advertising 
  11. or publicity pertaining to distribution  of  the software  
  12. without specific prior written permission. Sun makes no 
  13. representations about the suitability of this software for 
  14. any purpose. It is provided "as is" without any express or 
  15. implied warranty.
  16. SUN DISCLAIMS ALL WARRANTIES WITH REGARD TO  THIS  SOFTWARE,
  17. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FIT-
  18. NESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SUN BE  LI-
  19. ABLE  FOR  ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  20. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,  DATA  OR
  21. PROFITS,  WHETHER  IN  AN  ACTION OF CONTRACT, NEGLIGENCE OR
  22. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
  23. THE USE OR PERFORMANCE OF THIS SOFTWARE.
  24. ********************************************************/
  25. /*
  26. Copyright 1994, 1998  The Open Group
  27. Permission to use, copy, modify, distribute, and sell this software and its
  28. documentation for any purpose is hereby granted without fee, provided that
  29. the above copyright notice appear in all copies and that both that
  30. copyright notice and this permission notice appear in supporting
  31. documentation.
  32. The above copyright notice and this permission notice shall be included in
  33. all copies or substantial portions of the Software.
  34. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  37. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  38. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  39. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  40. Except as contained in this notice, the name of The Open Group shall not be
  41. used in advertising or otherwise to promote the sale, use or other dealings
  42. in this Software without prior written authorization from The Open Group.
  43. */
  44. /* $XFree86: xc/lib/Xt/ThreadsI.h,v 3.5 2001/12/14 19:56:31 dawes Exp $ */
  45. #ifndef _XtThreadsI_h
  46. #define _XtThreadsI_h
  47. #include <X11/XlibConf.h>
  48. #ifdef XTHREADS
  49. typedef struct _LockRec *LockPtr;
  50. typedef void (*ThreadAppProc)(
  51.     XtAppContext /* app */
  52. );
  53. typedef void (*ThreadAppYieldLockProc)(
  54.     XtAppContext, /* app */
  55.     Boolean*, /* push_thread */
  56.     Boolean*, /* pushed_thread */
  57.     int* /* level */
  58. );
  59. typedef void (*ThreadAppRestoreLockProc)(
  60.     XtAppContext /* app */,
  61.     int, /* level */
  62.     Boolean* /* pushed_thread */
  63. );
  64. extern void (*_XtProcessLock)(
  65.     void
  66. );
  67. extern void (*_XtProcessUnlock)(
  68.     void
  69. );
  70. extern void (*_XtInitAppLock)(
  71.     XtAppContext /* app */
  72. );
  73. #define INIT_APP_LOCK(app) if(_XtInitAppLock) (*_XtInitAppLock)(app)
  74. #define FREE_APP_LOCK(app) if(app && app->free_lock)(*app->free_lock)(app)
  75. #define LOCK_PROCESS if(_XtProcessLock)(*_XtProcessLock)()
  76. #define UNLOCK_PROCESS if(_XtProcessUnlock)(*_XtProcessUnlock)()
  77. #define LOCK_APP(app) if(app && app->lock)(*app->lock)(app)
  78. #define UNLOCK_APP(app) if(app && app->unlock)(*app->unlock)(app)
  79. #define YIELD_APP_LOCK(app,push,pushed,level)
  80.  if(app && app->yield_lock) (*app->yield_lock)(app,push,pushed,level)
  81. #define RESTORE_APP_LOCK(app,level,pushed)
  82.  if(app && app->restore_lock) (*app->restore_lock)(app,level,pushed)
  83. #define WIDGET_TO_APPCON(w) 
  84.     XtAppContext app = (w && _XtProcessLock ? 
  85. XtWidgetToApplicationContext(w) : NULL)
  86. #define DPY_TO_APPCON(d) 
  87.     XtAppContext app = (_XtProcessLock ? XtDisplayToApplicationContext(d): 0)
  88. #else /* defined(XTHREADS) */
  89. #define LOCK_PROCESS
  90. #define UNLOCK_PROCESS
  91. #define LOCK_APP(app)
  92. #define UNLOCK_APP(app)
  93. #define INIT_APP_LOCK(app)
  94. #define FREE_APP_LOCK(app)
  95. #define WIDGET_TO_APPCON(w)
  96. #define DPY_TO_APPCON(d)
  97. #endif /* !defined(XTHREADS) */
  98. #endif /* _XtThreadsI_h */