View | Details | Raw Unified | Return to bug 273373 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/sys/timerfd.h (-2 / +2 lines)
Lines 29-36 Link Here
29
#define _SYS_TIMERFD_H_
29
#define _SYS_TIMERFD_H_
30
30
31
#include <sys/types.h>
31
#include <sys/types.h>
32
#include <sys/fcntl.h>
33
#include <sys/proc.h>
34
#include <sys/timespec.h>
32
#include <sys/timespec.h>
35
33
36
typedef	uint64_t	timerfd_t;
34
typedef	uint64_t	timerfd_t;
Lines 54-59 __END_DECLS Link Here
54
52
55
#else /* _KERNEL */
53
#else /* _KERNEL */
56
54
55
struct thread;
56
57
int kern_timerfd_create(struct thread *td, int clockid, int flags);
57
int kern_timerfd_create(struct thread *td, int clockid, int flags);
58
int kern_timerfd_gettime(struct thread *td, int fd,
58
int kern_timerfd_gettime(struct thread *td, int fd,
59
    struct itimerspec *curr_value);
59
    struct itimerspec *curr_value);

Return to bug 273373