Subversion Repositories Kolibri OS

Rev

Rev 3031 | Rev 3391 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3031 Rev 3192
Line 1... Line 1...
1
#ifndef _LINUX_WAIT_H
1
#ifndef _LINUX_WAIT_H
2
#define _LINUX_WAIT_H
2
#define _LINUX_WAIT_H
Line -... Line 3...
-
 
3
 
-
 
4
#include 
3
 
5
 
4
typedef struct __wait_queue wait_queue_t;
6
typedef struct __wait_queue wait_queue_t;
Line 5... Line 7...
5
typedef struct __wait_queue_head wait_queue_head_t;
7
typedef struct __wait_queue_head wait_queue_head_t;
6
 
8
 
Line 66... Line 68...
66
    DestroyEvent(__wait.evnt);                              \
68
    DestroyEvent(__wait.evnt);                              \
67
} while (0);                                                \
69
} while (0);                                                \
68
    __ret;                                                  \
70
    __ret;                                                  \
69
})
71
})
Line -... Line 72...
-
 
72
 
-
 
73
#define wait_event_interruptible_timeout(wq, condition, timeout)    \
Line 70... Line 74...
70
 
74
        wait_event_timeout(wq, condition, timeout)
71
 
75
 
72
 
76