#include "../jnilib.h"
Include dependency graph for thread.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | Thread_ |
A structure for C, which describes the Thread. More... | |
struct | ThreadCPP_ |
A structure for C++, which describes the Thread. More... | |
struct | ThreadData |
This structure holds the data needed for the Thread for C and C++. More... | |
Defines | |
#define | CLS_THREAD "at/fhv/sgr/threading/JNIThread" |
Defines the full name of the JNIThread-Thread-Class. | |
#define | createThread createThreadC |
Defines which function to call when createThread is called. | |
#define | deleteThread deleteThreadC |
Defines which function to call when deleteThread is called. | |
Typedefs | |
typedef Thread_ | Thread |
Defines which structure is used as Thread. | |
typedef Thread_ | Thread_ |
A structure for C, which describes the Thread. | |
typedef ThreadCPP_ | ThreadCPP_ |
A structure for C++, which describes the Thread. | |
typedef ThreadData | ThreadData |
This structure holds the data needed for the Thread for C and C++. | |
Functions | |
void | createThreadC (Thread_ *thread, void(*func)()) |
Function is called when working with C and calling the function createThread. | |
void | createThreadCPP (ThreadCPP_ *thread, void(*func)()) |
Function is called when working with C++ and calling the function createThread. | |
void | deleteThreadC (Thread_ *thread) |
Function is called when working with C and calling the function deleteThread. | |
void | deleteThreadCPP (ThreadCPP_ *thread) |
Function is called when working with C++ and calling the function deleteThread. |
A thread is a thread of execution in a program.
Definition in file thread.h.
|
Defines the full name of the JNIThread-Thread-Class.
|
|
Defines which function to call when createThread is called.
|
|
Defines which function to call when deleteThread is called.
|
|
Defines which structure is used as Thread.
|
|
A structure for C, which describes the Thread.
|
|
A structure for C++, which describes the Thread.
|
|
This structure holds the data needed for the Thread for C and C++.
|
|
Function is called when working with C and calling the function createThread. It initializes the Thread_ structure.
|
|
Function is called when working with C++ and calling the function createThread. It initializes the ThreadCPP_ structure.
|
|
Function is called when working with C and calling the function deleteThread.
|
|
Function is called when working with C++ and calling the function deleteThread.
|