source: rtems/cpukit/posix/src/cancelrun.c @ 343d4ff

4.104.114.84.95
Last change on this file since 343d4ff was f118085d, checked in by Joel Sherrill <joel.sherrill@…>, on 08/09/02 at 12:55:15

2002-08-09 Joel Sherrill <joel@…>

  • src/cancelrun.c: Remove check for PTHREAD_CANCELED not being defined to ensure that newlib patch includes it.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*
2 *  $Id$
3 */
4
5#if HAVE_CONFIG_H
6#include "config.h"
7#endif
8
9#include <pthread.h>
10#include <errno.h>
11
12#include <rtems/system.h>
13#include <rtems/score/chain.h>
14#include <rtems/score/isr.h>
15#include <rtems/score/thread.h>
16#include <rtems/score/wkspace.h>
17#include <rtems/posix/cancel.h>
18#include <rtems/posix/pthread.h>
19#include <rtems/posix/threadsup.h>
20
21/*PAGE
22 *
23 *  _POSIX_Threads_cancel_run
24 *
25 */
26
27void _POSIX_Threads_cancel_run(
28  Thread_Control *the_thread
29)
30{
31  POSIX_Cancel_Handler_control      *handler;
32  Chain_Control                     *handler_stack;
33  POSIX_API_Control                 *thread_support;
34  ISR_Level                          level;
35 
36  thread_support = the_thread->API_Extensions[ THREAD_API_POSIX ];
37 
38  handler_stack = &thread_support->Cancellation_Handlers;
39 
40  thread_support->cancelability_state = PTHREAD_CANCEL_DISABLE;
41
42  while ( !_Chain_Is_empty( handler_stack ) ) {
43    _ISR_Disable( level );
44      handler = (POSIX_Cancel_Handler_control *) _Chain_Tail( handler_stack );
45      _Chain_Extract_unprotected( &handler->Node );
46    _ISR_Enable( level );
47 
48    (*handler->routine)( handler->arg );
49
50    _Workspace_Free( handler );
51  }
52
53  /* Now we can delete the thread */
54
55  the_thread->Wait.return_argument = (unsigned32 *)PTHREAD_CANCELED;
56  _Thread_Close(
57    _Objects_Get_information( the_thread->Object.id ),
58    the_thread
59  );
60  _POSIX_Threads_Free( the_thread );
61
62}
Note: See TracBrowser for help on using the repository browser.