lock.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * File: lock.c $XConsortium: lock.c /main/4 1995/10/26 15:33:05 rswiston $
  25. * Language: C
  26. *
  27. * (C) Copyright 1989, Hewlett-Packard, all rights reserved.
  28. *
  29. * (c) Copyright 1993, 1994 Hewlett-Packard Company *
  30. * (c) Copyright 1993, 1994 International Business Machines Corp. *
  31. * (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
  32. * (c) Copyright 1993, 1994 Novell, Inc. *
  33. */
  34. #include <X11/Xlib.h>
  35. /******** Public Function Declarations ********/
  36. extern int _DtGetLock( Display *display, char *lock_name) ;
  37. extern void _DtReleaseLock( Display *display, char *lock_name) ;
  38. extern int _DtTestLock( Display *display, char *lock_name) ;
  39. /******** End Public Function Declarations ********/
  40. int
  41. _DtGetLock(
  42. Display *display,
  43. char *lock_name )
  44. {
  45. Atom lock_atom;
  46. Window selection_owner;
  47. Window root_window;
  48. /* Do as much processing as possible before grabbing the server. */
  49. lock_atom = XInternAtom (display, lock_name, False);
  50. root_window = DefaultRootWindow (display);
  51. /* Do an atomic test-and-set of the lock. To make this atomic we
  52. must grab the server. */
  53. XGrabServer (display);
  54. if ((selection_owner = XGetSelectionOwner (display, lock_atom)) == None)
  55. XSetSelectionOwner (display, lock_atom, root_window, CurrentTime);
  56. XUngrabServer (display);
  57. XFlush (display);
  58. /* If the lock was clear then it was successfully acquired. */
  59. if (selection_owner == None)
  60. return (1);
  61. else
  62. return (0);
  63. }
  64. void
  65. _DtReleaseLock(
  66. Display *display,
  67. char *lock_name )
  68. {
  69. Atom lock_atom;
  70. lock_atom = XInternAtom (display, lock_name, False);
  71. XSetSelectionOwner (display, lock_atom, None, CurrentTime);
  72. XFlush (display); /* added to release lock NOW */
  73. }
  74. int
  75. _DtTestLock(
  76. Display *display,
  77. char *lock_name )
  78. {
  79. Atom lock_atom;
  80. lock_atom = XInternAtom (display, lock_name, False);
  81. if (XGetSelectionOwner (display, lock_atom) == None)
  82. return (0);
  83. else
  84. return (1);
  85. }