rwlock.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2008-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  4. *
  5. * StarPU is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * StarPU is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. #ifndef __RWLOCKS_H__
  17. #define __RWLOCKS_H__
  18. #include <stdint.h>
  19. #include <starpu.h>
  20. /** @file */
  21. /** Dummy implementation of a RW-lock using a spinlock. */
  22. struct _starpu_rw_lock
  23. {
  24. uint32_t busy;
  25. uint8_t writer;
  26. uint16_t readercnt;
  27. };
  28. /** Initialize the RW-lock */
  29. void _starpu_init_rw_lock(struct _starpu_rw_lock *lock);
  30. /** Grab the RW-lock in a write mode */
  31. void _starpu_take_rw_lock_write(struct _starpu_rw_lock *lock);
  32. /** Grab the RW-lock in a read mode */
  33. void _starpu_take_rw_lock_read(struct _starpu_rw_lock *lock);
  34. /** Try to grab the RW-lock in a write mode. Returns 0 in case of success, -1
  35. * otherwise. */
  36. int _starpu_take_rw_lock_write_try(struct _starpu_rw_lock *lock);
  37. /** Try to grab the RW-lock in a read mode. Returns 0 in case of success, -1
  38. * otherwise. */
  39. int _starpu_take_rw_lock_read_try(struct _starpu_rw_lock *lock);
  40. /** Unlock the RW-lock. */
  41. void _starpu_release_rw_lock(struct _starpu_rw_lock *lock);
  42. #endif