Statistics
| Revision:

root / logic / trunk / src / logics / device_threads.h @ 60

History | View | Annotate | Download (307 Bytes)

1
#ifndef DEVICE_THREADS_H_INCLUDED
2
#define DEVICE_THREADS_H_INCLUDED
3
#include <pthread.h>
4

    
5
typedef struct thread_id_holder_s
6
{   pthread_t                 pthr_idx;
7
    struct thread_id_holder_s *nxt;
8
} thread_id_holder;
9

    
10
void *randomValThread_routine(void *dummy);
11

    
12
#endif // DEVICE_THREADS_H_INCLUDED