diff options
Diffstat (limited to 'include/linux/posix-clock.h')
| -rw-r--r-- | include/linux/posix-clock.h | 22 | 
1 files changed, 0 insertions, 22 deletions
diff --git a/include/linux/posix-clock.h b/include/linux/posix-clock.h index 83b22ae9ae12..38d8225510f1 100644 --- a/include/linux/posix-clock.h +++ b/include/linux/posix-clock.h @@ -42,12 +42,6 @@ struct posix_clock;   * @clock_gettime:  Read the current time   * @clock_getres:   Get the clock resolution   * @clock_settime:  Set the current time value - * @timer_create:   Create a new timer - * @timer_delete:   Remove a previously created timer - * @timer_gettime:  Get remaining time and interval of a timer - * @timer_settime: Set a timer's initial expiration and interval - * @fasync:         Optional character device fasync method - * @mmap:           Optional character device mmap method   * @open:           Optional character device open method   * @release:        Optional character device release method   * @ioctl:          Optional character device ioctl method @@ -66,28 +60,12 @@ struct posix_clock_operations {  	int  (*clock_settime)(struct posix_clock *pc,  			      const struct timespec64 *ts); -	int  (*timer_create) (struct posix_clock *pc, struct k_itimer *kit); - -	int  (*timer_delete) (struct posix_clock *pc, struct k_itimer *kit); - -	void (*timer_gettime)(struct posix_clock *pc, -			      struct k_itimer *kit, struct itimerspec64 *tsp); - -	int  (*timer_settime)(struct posix_clock *pc, -			      struct k_itimer *kit, int flags, -			      struct itimerspec64 *tsp, struct itimerspec64 *old);  	/*  	 * Optional character device methods:  	 */ -	int     (*fasync)  (struct posix_clock *pc, -			    int fd, struct file *file, int on); -  	long    (*ioctl)   (struct posix_clock *pc,  			    unsigned int cmd, unsigned long arg); -	int     (*mmap)    (struct posix_clock *pc, -			    struct vm_area_struct *vma); -  	int     (*open)    (struct posix_clock *pc, fmode_t f_mode);  	uint    (*poll)    (struct posix_clock *pc,  |