summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/setcancelstate.c
blob: 4040c37b55b920ae22f5d0b5c6d76f6d025ea1b2 (plain) (blame)
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
/**
 * @file
 *
 * @brief Setting Cancelability State
 * @ingroup POSIXAPI
 */

/*
 *  COPYRIGHT (c) 1989-2009.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  Copyright (c) 2016 embedded brains GmbH.
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <pthread.h>
#include <errno.h>

#include <rtems/score/isr.h>
#include <rtems/score/threadimpl.h>

/*
 *  18.2.2 Setting Cancelability State, P1003.1c/Draft 10, p. 183
 */

int pthread_setcancelstate(
  int  state,
  int *oldstate
)
{
  Thread_Life_state new_life_protection;
  Thread_Life_state previous_life_state;

  if ( _ISR_Is_in_progress() ) {
    return EPROTO;
  }

  if ( state == PTHREAD_CANCEL_DISABLE ) {
    new_life_protection = THREAD_LIFE_PROTECTED;
  } else if ( state == PTHREAD_CANCEL_ENABLE ) {
    new_life_protection = 0;
  } else {
    return EINVAL;
  }

  previous_life_state = _Thread_Set_life_protection( new_life_protection );

  if ( oldstate != NULL ) {
    if ( ( previous_life_state & THREAD_LIFE_PROTECTED ) != 0 ) {
      *oldstate = PTHREAD_CANCEL_DISABLE;
    } else {
      *oldstate = PTHREAD_CANCEL_ENABLE;
    }
  }

  return 0;
}