atikms: RC13

git-svn-id: svn://kolibrios.org@3192 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2013-01-22 15:16:44 +00:00
parent 5959abc989
commit 649c3b069e
53 changed files with 4665 additions and 1807 deletions

View File

@@ -1,6 +1,8 @@
#ifndef _LINUX_WAIT_H
#define _LINUX_WAIT_H
#include <syscall.h>
typedef struct __wait_queue wait_queue_t;
typedef struct __wait_queue_head wait_queue_head_t;
@@ -68,6 +70,8 @@ do{ \
__ret; \
})
#define wait_event_interruptible_timeout(wq, condition, timeout) \
wait_event_timeout(wq, condition, timeout)
#define wait_event(wq, condition) \