|
NVIDIA DRIVE OS Linux SDK API Reference
|
6.0.7 Release
|
Go to the documentation of this file.
11 #ifndef INCLUDED_NVSCIEVENT_H
12 #define INCLUDED_NVSCIEVENT_H
157 #define NV_SCI_EVENT_INFINITE_WAIT -1
158 #define NV_SCI_EVENT_PRIORITIES 4
165 typedef struct NvSciNativeEvent NvSciNativeEvent;
166 typedef struct NvSciLocalEvent NvSciLocalEvent;
167 typedef struct NvSciTimerEvent NvSciTimerEvent;
168 typedef struct NvSciEventLoop NvSciEventLoop;
244 NvSciNativeEvent* nativeEvent,
285 NvSciLocalEvent** newLocalEvent);
300 NvSciTimerEvent** newTimerEvent);
405 void (*callback)(
void* cookie),
491 size_t maxEventLoops,
559 size_t maxEventLoops,
584 NvSciEventLoop** eventLoop);
642 int64_t microseconds);
707 size_t eventNotifierCount,
708 int64_t microseconds,
709 bool* newEventArray);
788 size_t eventNotifierCount,
789 int64_t microseconds,
790 bool* newEventArray);
837 uint32_t eventNotifierCount,
NvSciError
Return/error codes for all NvSci functions.
static const uint32_t NvSciEventMinorVersion
NvSciEvent API Minor version number.
NvSciError NvSciEventCheckVersionCompatibility(uint32_t majorVer, uint32_t minorVer, bool *isCompatible)
An abstract interface to notify event to event consumer and to register event handler of the event co...
NvSciError NvSciEventLoopServiceCreate(size_t maxEventLoops, NvSciEventLoopService **newEventLoopService)
Creates a new event loop service.
NvSciError(* WaitForEvent)(NvSciEventNotifier *eventNotifier, int64_t microseconds)
Waits up to a configurable timeout for a particular event notification, servicing events with configu...
static const uint32_t NvSciEventMajorVersion
NvSciEvent API Major version number.
NvSciError NvSciEventLoopServiceCreateSafe(size_t maxEventLoops, void *config, NvSciEventLoopService **newEventLoopService)
Creates a new event loop service.
void(* Delete)(NvSciEventNotifier *thisEventNotifier)
Unregisters any previously-registered event handler and delete this event notifier.
NvSciError(* WaitForMultipleEvents)(NvSciEventNotifier *const *eventNotifierArray, size_t eventNotifierCount, int64_t microseconds, bool *newEventArray)
Waits up to a configurable timeout for any of a set of particular event notifications,...
NvSciEventService EventService
An abstract interface that event consumer can wait for events using event notifier in event loop.
void(* Delete)(NvSciEventService *thisEventService)
Releases any resources associated with this event service.
NvSciError(* SetHandler)(NvSciEventNotifier *thisEventNotifier, void(*callback)(void *cookie), void *cookie, uint32_t priority)
Registers or unregisters a handler for a particular event notifier.
NvSciError(* WaitForMultipleEventsExt)(NvSciEventService *eventService, NvSciEventNotifier *const *eventNotifierArray, size_t eventNotifierCount, int64_t microseconds, bool *newEventArray)
Waits up to a configurable timeout for any of a set of particular event notifications,...
An abstract interface for a program's event handling infrastructure.