VMS Help  —  POSIX Threads, PTHREAD routines, pthread_exc_matches_np
    (Macro) Determines whether two Threads Library exception objects
    are identical.

1  –  C Binding

    #include <pthread_exception.h>

    int
    pthread_exc_matches_np (
             EXCEPTION    *exception1,
             EXCEPTION    *exception2);

2  –  Arguments

 exception1

    Threads Library exception object.

 exception2

    Threads Library exception object.

3  –  Description

    This routine compares two exception objects, taking into
    consideration whether each is an address exception or status
    exception.

    This routine returns either the C language value TRUE or the
    C language value FALSE, indicating whether the two exception
    objects specified in the arguments exception1 and exception2 are
    identical.

4  –  Return Values

    The C language value TRUE if the exception objects are identical,
    or the C language value FALSE if not.

5  –  Associated Routines

       pthread_exc_get_status_np()
       pthread_exc_report_np()
       pthread_exc_set_status_np()
Close Help