Home
last modified time | relevance | path

Searched refs:pinsyscall (Results 1 – 3 of 3) sorted by relevance

/openbsd/sys/sys/
H A Dproc.h120 struct pinsyscall { struct
251 struct pinsyscall ps_pin; /* static or ld.so */
252 struct pinsyscall ps_libcpin; /* libc.so, from pinsyscalls(2) */
H A Dsyscall_mi.h59 struct pinsyscall *pin = NULL, *ppin, *plibcpin; in pin_check()
/openbsd/usr.bin/kdump/
H A Dkdump.c1500 ktrpinsyscall(struct ktr_pinsyscall *pinsyscall, size_t len) in ktrpinsyscall() argument
1508 if (pinsyscall->syscall >= SYS_MAXSYSCALL || pinsyscall->syscall < 0) in ktrpinsyscall()
1509 (void)printf("[%d]", pinsyscall->syscall); in ktrpinsyscall()
1511 (void)printf("%s", syscallnames[pinsyscall->syscall]); in ktrpinsyscall()
1512 (void)printf(", addr %lx, errno %d", pinsyscall->addr, in ktrpinsyscall()
1513 pinsyscall->error); in ktrpinsyscall()
1514 (void)printf(", errno %d", pinsyscall->error); in ktrpinsyscall()
1516 (void)printf(" %s", strerror(pinsyscall->error)); in ktrpinsyscall()