pthread_barrier.c 660 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <posix/pthread.h>
  8. #include <ksched.h>
  9. #include <wait_q.h>
  10. extern struct k_spinlock z_pthread_spinlock;
  11. int pthread_barrier_wait(pthread_barrier_t *b)
  12. {
  13. k_spinlock_key_t key = k_spin_lock(&z_pthread_spinlock);
  14. int ret = 0;
  15. b->count++;
  16. if (b->count >= b->max) {
  17. b->count = 0;
  18. while (z_waitq_head(&b->wait_q)) {
  19. _ready_one_thread(&b->wait_q);
  20. }
  21. z_reschedule(&z_pthread_spinlock, key);
  22. ret = PTHREAD_BARRIER_SERIAL_THREAD;
  23. } else {
  24. (void) z_pend_curr(&z_pthread_spinlock, key, &b->wait_q, K_FOREVER);
  25. }
  26. return ret;
  27. }