OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [posix/] [src/] [setcanceltype.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  $Id: setcanceltype.c,v 1.2 2001-09-27 11:59:17 chris Exp $
3
 */
4
 
5
#include <pthread.h>
6
#include <errno.h>
7
 
8
#include <rtems/system.h>
9
#include <rtems/score/chain.h>
10
#include <rtems/score/isr.h>
11
#include <rtems/score/thread.h>
12
#include <rtems/score/wkspace.h>
13
#include <rtems/posix/cancel.h>
14
#include <rtems/posix/pthread.h>
15
#include <rtems/posix/threadsup.h>
16
 
17
/*PAGE
18
 *
19
 *  18.2.2 Setting Cancelability State, P1003.1c/Draft 10, p. 183
20
 */
21
 
22
int pthread_setcanceltype(
23
  int  type,
24
  int *oldtype
25
)
26
{
27
  POSIX_API_Control                 *thread_support;
28
 
29
  if ( !oldtype )
30
    return EINVAL;
31
 
32
  if ( type != PTHREAD_CANCEL_DEFERRED && type != PTHREAD_CANCEL_ASYNCHRONOUS )
33
    return EINVAL;
34
 
35
  thread_support = _Thread_Executing->API_Extensions[ THREAD_API_POSIX ];
36
 
37
  *oldtype = thread_support->cancelability_type;
38
  thread_support->cancelability_type = type;
39
 
40
  if ( thread_support->cancelability_state == PTHREAD_CANCEL_ENABLE &&
41
       thread_support->cancelability_type == PTHREAD_CANCEL_ASYNCHRONOUS &&
42
       thread_support->cancelation_requested )
43
    _POSIX_Thread_cancel_run( _Thread_Executing );
44
 
45
  return 0;
46
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.