enum rpc_pthread_canceltype

Overview

Thread cancelability types. More…

#include <te_rpc_pthread.h>

enum rpc_pthread_canceltype {
    RPC_PTHREAD_CANCEL_TYPE_UNKNOWN,
    RPC_PTHREAD_CANCEL_DEFERRED,
    RPC_PTHREAD_CANCEL_ASYNCHRONOUS,
};

Detailed Documentation

Thread cancelability types.

Enum Values

RPC_PTHREAD_CANCEL_TYPE_UNKNOWN

Cancelability type unknown to RPC server

RPC_PTHREAD_CANCEL_DEFERRED

A cancellation request is deferred until the thread next calls a function that is a cancellation point.

RPC_PTHREAD_CANCEL_ASYNCHRONOUS

The thread can be canceled at any time