Xenomai API  2.6.5
wrappers.h
1 #ifndef _XENO_WRAPPERS_H
2 #define _XENO_WRAPPERS_H
3 
4 #include <sys/types.h>
5 #include <pthread.h>
6 
7 int __real_pthread_create(pthread_t *tid,
8  const pthread_attr_t * attr,
9  void *(*start) (void *), void *arg);
10 
11 int __real_pthread_kill(pthread_t tid, int sig);
12 
13 int __real_open(const char *path, int oflag, ...);
14 
15 int __real_close(int fd);
16 
17 int __real_ioctl(int fd, int request, ...);
18 
19 void *__real_mmap(void *addr,
20  size_t len, int prot, int flags, int fd, off_t off);
21 
22 int __real_munmap(void *addr, size_t len);
23 
24 #endif /* !_XENO_WRAPPERS_H */