source: rtems/c/src/exec/posix/include/rtems/posix/cancel.h @ 0a3946f

4.104.114.84.95
Last change on this file since 0a3946f was 0a3946f, checked in by Joel Sherrill <joel.sherrill@…>, on 11/03/99 at 12:46:58

Added prototype of POSIX_Thread_cancel_run to avoid warnings.

  • Property mode set to 100644
File size: 391 bytes
Line 
1/* rtems/posix/cancel.h
2 *
3 *  $Id$
4 */
5
6#ifndef __RTEMS_POSIX_CANCEL_h
7#define __RTEMS_POSIX_CANCEL_h
8
9typedef struct {
10  Chain_Node  Node;
11  void      (*routine)( void * );
12  void       *arg;
13}  POSIX_Cancel_Handler_control;
14
15/*
16 *  POSIX_Thread_cancel_run
17 *
18 *  DESCRIPTION:
19 *
20 *  XXX
21 */
22
23void POSIX_Thread_cancel_run(
24  Thread_Control *the_thread
25);
26
27#endif
28/* end of include file */
Note: See TracBrowser for help on using the repository browser.