Subversion Repositories HelenOS

Rev

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

Rev 1787 Rev 1866
Line 30... Line 30...
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef _libc_ASYNC_H_
35
#ifndef LIBC_ASYNC_H_
36
#define _libc_ASYNC_H_
36
#define LIBC_ASYNC_H_
37
 
37
 
38
#include <ipc/ipc.h>
38
#include <ipc/ipc.h>
39
#include <psthread.h>
39
#include <psthread.h>
40
#include <sys/time.h>
40
#include <sys/time.h>
41
#include <atomic.h>
41
#include <atomic.h>
Line 128... Line 128...
128
}
128
}
129
 
129
 
130
extern atomic_t async_futex;
130
extern atomic_t async_futex;
131
#endif
131
#endif
132
 
132
 
133
 
-
 
134
 /** @}
133
/** @}
135
 */
134
 */
136
 
-
 
137
 
-