Lines Matching defs:narg
342 * set_errno() to return an error. For SPARC, narg must be at most six.
356 #define SYSENT_C(name, call, narg) \
357 { (narg), SE_64RVAL, NULL, NULL, (llfcn_t)(call) }
360 #define SYSENT_CI(name, call, narg) \
361 { (narg), SE_32RVAL1, NULL, NULL, (llfcn_t)(call) }
364 #define SYSENT_2CI(name, call, narg) \
365 { (narg), SE_32RVAL1|SE_32RVAL2, NULL, NULL, (llfcn_t)(call) }
374 #define SYSENT_AP(name, call, narg) \
375 { (narg), SE_64RVAL, (call), NULL, syscall_ap }
415 #define SYSENT_CL(name, call, narg) \
416 IF_LP64(SYSENT_C(name, call, narg), SYSENT_CI(name, call, narg))