Xenomai 3.3.2
Loading...
Searching...
No Matches
thread_info.h
1
20#ifndef _COBALT_DOVETAIL_THREAD_INFO_H
21#define _COBALT_DOVETAIL_THREAD_INFO_H
22
23struct xnthread;
24struct cobalt_process;
25
26struct oob_thread_state {
27 /* Core thread backlink. */
28 struct xnthread *thread;
29 /* User process backlink. NULL for core threads. */
30 struct cobalt_process *process;
31};
32
33#endif /* !_COBALT_DOVETAIL_THREAD_INFO_H */