Class CUDA_EXTERNAL_SEMAPHORE_HANDLE_DESC

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class CUDA_EXTERNAL_SEMAPHORE_HANDLE_DESC extends Struct<CUDA_EXTERNAL_SEMAPHORE_HANDLE_DESC> implements NativeResource

Layout


 struct CUDA_EXTERNAL_SEMAPHORE_HANDLE_DESC {
     CUexternalSemaphoreHandleType type;
     union {
         int fd;
         struct {
             void * handle;
             void const * name;
         } win32;
         void const * nvSciSyncObj;
     } handle;
     unsigned int flags;
     unsigned int reserved[16];
 }