forked from Imagelibrary/rtems
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
64 lines
1.4 KiB
Perl
64 lines
1.4 KiB
Perl
@c
|
|
@c COPYRIGHT (c) 1988-2002.
|
|
@c On-Line Applications Research Corporation (OAR).
|
|
@c All rights reserved.
|
|
|
|
@chapter Thread Cancellation
|
|
|
|
@section Thread Cancellation Overview
|
|
|
|
@subsection Cancelability States
|
|
|
|
@example
|
|
PTHREAD_CANCEL_DISABLE, Constant, Implemented
|
|
PTHREAD_CANCEL_ENABLE, Constant, Implemented
|
|
PTHREAD_CANCEL_ASYNCHRONOUS, Constant, Implemented
|
|
PTHREAD_CANCEL_DEFERRED, Constant, Implemented
|
|
@end example
|
|
|
|
@subsection Cancellation Points
|
|
|
|
@subsection Thread Cancellation Cleanup Handlers
|
|
|
|
@example
|
|
PTHREAD_CANCELED, Constant, Unimplemented
|
|
@end example
|
|
|
|
@subsection Async-Cancel Safety
|
|
|
|
@section Thread Cancellation Functions
|
|
|
|
@subsection Canceling Execution of a Thread
|
|
|
|
@example
|
|
pthread_cancel(), Function, Implemented
|
|
@end example
|
|
|
|
@subsection Setting Cancelability State
|
|
|
|
@example
|
|
pthread_setcancelstate(), Function, Implemented
|
|
pthread_setcanceltype(), Function, Implemented
|
|
pthread_testcancel(), Function, Implemented
|
|
@end example
|
|
|
|
@subsection Establishing Cancellation Handlers
|
|
|
|
@example
|
|
pthread_cleanup_push(), Function, Implemented
|
|
pthread_cleanup_pop(), Function, Implemented
|
|
@end example
|
|
|
|
@section Language-Independent Cancellation Functionality
|
|
|
|
@subsection Requesting Cancellation
|
|
|
|
@subsection Associating Cleanup Code With Scopes
|
|
|
|
@subsection Controlling Cancellation Within Scopes
|
|
|
|
@subsection Defined Cancellation Sequence
|
|
|
|
@subsection List of Cancellation Points
|
|
|