Searched refs:fapp (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dfcntl.c636 static int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp) argument
643 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
669 static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp) argument
680 for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
696 new->fa_next = *fapp;
697 rcu_assign_pointer(*fapp, new);
713 int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp) argument
716 return fasync_remove_entry(filp, fapp);
717 return fasync_add_entry(fd, filp, fapp);

Completed in 63 milliseconds