pspinlock.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* POSIX spinlock implementation. x86 version.
  2. Copyright (C) 2000, 2002, 2006 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If
  14. not, see <http://www.gnu.org/licenses/>. */
  15. #include <errno.h>
  16. #include <pthread.h>
  17. #include "internals.h"
  18. #include <bits/kernel-features.h>
  19. /* This implementation is similar to the one used in the Linux kernel.
  20. But the kernel is byte instructions for the memory access. This is
  21. faster but unusable here. The problem is that only 128
  22. threads/processes could use the spinlock at the same time. If (by
  23. a design error in the program) a thread/process would hold the
  24. spinlock for a time long enough to accumulate 128 waiting
  25. processes, the next one will find a positive value in the spinlock
  26. and assume it is unlocked. We cannot accept that. */
  27. int
  28. __pthread_spin_lock (pthread_spinlock_t *lock)
  29. {
  30. __asm__ __volatile__
  31. ("\n"
  32. "1:\n\t"
  33. "lock; decl %0\n\t"
  34. "js 2f\n\t"
  35. ".section .text.spinlock,\"ax\"\n"
  36. "2:\n\t"
  37. "cmpl $0,%0\n\t"
  38. "rep; nop\n\t"
  39. "jle 2b\n\t"
  40. "jmp 1b\n\t"
  41. ".previous"
  42. : "=m" (*lock));
  43. return 0;
  44. }
  45. weak_alias (__pthread_spin_lock, pthread_spin_lock)
  46. int
  47. __pthread_spin_trylock (pthread_spinlock_t *lock)
  48. {
  49. int oldval;
  50. __asm__ __volatile__
  51. ("xchgl %0,%1"
  52. : "=r" (oldval), "=m" (*lock)
  53. : "0" (0));
  54. return oldval > 0 ? 0 : EBUSY;
  55. }
  56. weak_alias (__pthread_spin_trylock, pthread_spin_trylock)
  57. int
  58. __pthread_spin_unlock (pthread_spinlock_t *lock)
  59. {
  60. __asm__ __volatile__
  61. ("movl $1,%0"
  62. : "=m" (*lock));
  63. return 0;
  64. }
  65. weak_alias (__pthread_spin_unlock, pthread_spin_unlock)
  66. int
  67. __pthread_spin_init (pthread_spinlock_t *lock, int pshared)
  68. {
  69. /* We can ignore the `pshared' parameter. Since we are busy-waiting
  70. all processes which can access the memory location `lock' points
  71. to can use the spinlock. */
  72. *lock = 1;
  73. return 0;
  74. }
  75. weak_alias (__pthread_spin_init, pthread_spin_init)
  76. int
  77. __pthread_spin_destroy (pthread_spinlock_t *lock)
  78. {
  79. /* Nothing to do. */
  80. return 0;
  81. }
  82. weak_alias (__pthread_spin_destroy, pthread_spin_destroy)
  83. #ifndef __ASSUME_SET_THREAD_AREA_SYSCALL
  84. int __have_no_set_thread_area;
  85. #endif