Lines Matching refs:snoop_handler
64 static struct snoop_handler *snoop_hp; /* global alarm handler head */
65 static struct snoop_handler *snoop_tp; /* global alarm handler tail */
902 volatile struct snoop_handler *sh = NULL; in snoop_alarm()
903 volatile struct snoop_handler *hp, *tp, *next; in snoop_alarm()
915 sh = malloc(sizeof (struct snoop_handler)); in snoop_alarm()
923 snoop_hp = snoop_tp = (struct snoop_handler *)sh; in snoop_alarm()
928 snoop_tp->s_next = (struct snoop_handler *)sh; in snoop_alarm()
929 snoop_tp = (struct snoop_handler *)sh; in snoop_alarm()
943 tp = (struct snoop_handler *)&snoop_hp; in snoop_alarm()
950 if (tp == (struct snoop_handler *)&snoop_hp) in snoop_alarm()
953 snoop_tp = (struct snoop_handler *)tp; in snoop_alarm()
1024 volatile struct snoop_handler *hp; in snoop_sigrecover()