File: test_pthread_cancel_cond_wait.c

package info (click to toggle)
emscripten 3.1.69%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 121,872 kB
  • sloc: ansic: 636,110; cpp: 425,974; javascript: 78,401; python: 58,404; sh: 49,154; pascal: 5,237; makefile: 3,365; asm: 2,415; lisp: 1,869
file content (81 lines) | stat: -rw-r--r-- 2,171 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2021 The Emscripten Authors.  All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License.  Both these licenses can be
// found in the LICENSE file.

#include <pthread.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <unistd.h>
#include <errno.h>
#include <emscripten.h>

pthread_barrier_t barrier;
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t condvar = PTHREAD_COND_INITIALIZER;

int th_cancelled = 0;

volatile int res = 43;

static void cleanup_handler(void *arg) {
  emscripten_log(EM_LOG_CONSOLE, "Called clean-up handler with arg %p", arg);
  int a = (intptr_t)(arg);
  res -= a;

  pthread_mutex_unlock(&mutex);
  pthread_barrier_wait(&barrier);
}

static void *thread_start(void *arg) {
  pthread_cleanup_push(cleanup_handler, (void*)42);
  emscripten_log(EM_LOG_CONSOLE, "Thread started!");
  pthread_mutex_lock(&mutex);
  pthread_barrier_wait(&barrier);

  int ret = 0;
  do {
    emscripten_log(EM_LOG_CONSOLE, "Waiting on conditional variable");
    ret = pthread_cond_wait(&condvar, &mutex);
  } while (ret == 0 && th_cancelled == 0);

  if (ret != 0) {
    emscripten_log(EM_LOG_CONSOLE, "Cond wait failed ret: %d", ret);
  }

  res = 1000; // Shouldn't ever reach here.
  pthread_cleanup_pop(0);

  pthread_mutex_unlock(&mutex);
  pthread_barrier_wait(&barrier);
  return NULL;
}

int main() {
  pthread_barrier_init(&barrier, NULL, 2);

  pthread_t thr;
  int s = pthread_create(&thr, NULL, thread_start, (void*)0);
  assert(s == 0);
  emscripten_log(EM_LOG_CONSOLE, "Thread created");

  pthread_barrier_wait(&barrier);

  // Lock mutex to ensure that thread is waiting
  pthread_mutex_lock(&mutex);

  emscripten_log(EM_LOG_CONSOLE, "Canceling thread..");
  s = pthread_cancel(thr);
  assert(s == 0);
  th_cancelled = 1;
  pthread_mutex_unlock(&mutex);

  emscripten_log(EM_LOG_CONSOLE, "Main thread waitnig for side-thread");
  pthread_barrier_wait(&barrier);
  pthread_barrier_destroy(&barrier);

  emscripten_log(EM_LOG_CONSOLE, "Test finished result: %d", res);
  return res;
}