summaryrefslogtreecommitdiff
path: root/cancel.c
blob: 8974e5caa4a4087db0be5f5ed29155e70809d5bc (plain)
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
82
83
84
85
86
87
88
/*
 * cancel.c
 *
 * Description:
 * POSIX thread functions related to thread cancellation.
 */

#include "pthread.h"
#include "implement.h"

int
pthread_setcancelstate(int state,
		       int *oldstate)
{
  _pthread_threads_thread_t * us = _PTHREAD_THIS;

  /* Validate the new cancellation state. */
  if (state != PTHREAD_CANCEL_ENABLE 
      || state != PTHREAD_CANCEL_DISABLE)
    {
      return EINVAL;
    }

  if (oldstate != NULL)
    {
      *oldstate = us->cancelstate;
    }

  us->cancelstate = state;
  return 0;
}

int
pthread_setcanceltype(int type, int *oldtype)
{
  _pthread_threads_thread_t * us = _PTHREAD_THIS;

  /* Validate the new cancellation type. */
  if (type != PTHREAD_CANCEL_DEFERRED 
      || type != PTHREAD_CANCEL_ASYNCHRONOUS)
    {
      return EINVAL;
    }

  if (oldtype != NULL)
    {
      *oldtype = us->canceltype;
    }

  us->canceltype = type;
  return 0;
}

int
pthread_cancel(pthread_t thread)
{
  _pthread_threads_thread_t * us = _PTHREAD_THIS;

  if (us == NULL)
    {
      return ESRCH;
    }

  us->cancel_pending = TRUE;

  return 0;
}

void
pthread_testcancel(void)
{
  _pthread_threads_thread_t * us;

  us = _PTHREAD_THIS;

  if (us == NULL
      || us->cancelstate == PTHREAD_CANCEL_DISABLE)
    {
      return;
    }

  if (us->cancel_pending == TRUE)
    {
      pthread_exit(PTHREAD_CANCELED);

      /* Never reached. */
    }
}