Jetson Inference
DNN Vision Library
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules

Mutex, events, threads, and process objects based on pthreads. More...

Classes

class  Event
 Event object for signalling other threads. More...
 
class  Mutex
 A lightweight mutual exclusion lock. More...
 
class  Process
 Static functions for retrieving information about the running process. More...
 
class  Thread
 Thread class for launching an asynchronous operating-system dependent thread. More...
 

Typedefs

typedef void *(* ThreadEntryFunction) (void *user_param)
 Function pointer typedef representing a thread's main entry point. More...
 

Detailed Description

Mutex, events, threads, and process objects based on pthreads.

Typedef Documentation

◆ ThreadEntryFunction

typedef void*(* ThreadEntryFunction) (void *user_param)

Function pointer typedef representing a thread's main entry point.

A user-defined parameter is passed through such that the user can pass data or other value to their thread so that it can self-identify.