Home | History | Annotate | Download | only in strace

Lines Matching full:scno

407 	int qual_flg;		/* qual_flags[scno] or DEFAULT_QUAL_FLAGS + RAW */
409 long scno; /* System call number */
417 int currpers; /* Personality at the time of scno update */
422 const struct_sysent *s_ent; /* sysent[scno] or dummy struct for bad scno */
824 * If you need non-NULL sysent[scno].sys_func and sysent[scno].sys_name
826 #define SCNO_IS_VALID(scno) \
827 ((unsigned long)(scno) < nsyscalls && sysent[scno].sys_func)
829 /* Only ensures that sysent[scno] isn't out of range */
830 #define SCNO_IN_RANGE(scno) \
831 ((unsigned long)(scno) < nsyscalls)