source: rtems/cpukit/posix/include/rtems/posix/cancel.h @ 6c2675d

4.104.114.84.95
Last change on this file since 6c2675d was 6c2675d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/21/04 at 06:27:15

Add doxygen preamble.

  • Property mode set to 100644
File size: 542 bytes
Line 
1/**
2 * @file rtems/posix/cancel.h
3 */
4
5/* rtems/posix/cancel.h
6 *
7 *  $Id$
8 */
9
10#ifndef __RTEMS_POSIX_CANCEL_h
11#define __RTEMS_POSIX_CANCEL_h
12
13typedef struct {
14  Chain_Node  Node;
15  void      (*routine)( void * );
16  void       *arg;
17}  POSIX_Cancel_Handler_control;
18
19/*
20 *  _POSIX_Threads_cancel_run
21 *
22 *  DESCRIPTION:
23 *
24 *  This support routine runs through the chain of cancel handlers that
25 *  have been registered and executes them.
26 */
27
28void _POSIX_Threads_cancel_run(
29  Thread_Control *the_thread
30);
31
32#endif
33/* end of include file */
Note: See TracBrowser for help on using the repository browser.