summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxcancel01/init.c
blob: 437fd935882a2aa9a336b5807707d6ec5e788452 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#include <pmacros.h>
#include <errno.h>

volatile int Cancel_occurred;
volatile int Cancel_status;

rtems_timer_service_routine Cancel_duringISR_TSR(
  rtems_id  ignored_id,
  void     *ignored_address
)
{
  Cancel_status = pthread_cancel( pthread_self() );
  Cancel_occurred = 1;
}


void *POSIX_Init(
  void *argument
)
{
  int             status;
  rtems_interval  start;
  rtems_interval  end;
  rtems_id        timer_id;

  puts( "\n\n*** POSIX TEST CANCEL 01 ***" );

  status = rtems_timer_create(
    rtems_build_name( 'T', 'M', '1', ' ' ),
    &timer_id
  );
  assert( !status );

  Cancel_occurred = 0;
  Cancel_status   = 0;

  puts( "Init: schedule pthread_cancel from a TSR" );
  status = rtems_timer_fire_after( timer_id, 10, Cancel_duringISR_TSR, NULL );
  assert( !status );

  /* cancel occurs during sleep */

  do {
    end = rtems_clock_get_ticks_since_boot();
  } while ( !Cancel_occurred && ((end - start) <= 800));

  if ( !Cancel_occurred ) {
    puts( "Cancel did not occur" );
    rtems_test_exit(0);
  }
  if ( Cancel_status != EPROTO ) {
    printf( "Cancel returned %s\n", strerror(Cancel_status) );
    rtems_test_exit(0);
  }
  puts( "pthread_cancel - from ISR returns EPROTO - OK" );


  puts( "*** END OF POSIX TEST CANCEL 01 ***" );
  rtems_test_exit(0);
  return NULL; /* just so the compiler thinks we returned something */
}

/* configuration information */

#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER

#define CONFIGURE_MAXIMUM_TIMERS        1

#define CONFIGURE_MAXIMUM_POSIX_THREADS        1
#define CONFIGURE_POSIX_INIT_THREAD_TABLE

#define CONFIGURE_INIT
#include <rtems/confdefs.h>