/src/sys/arch/usermode/usermode/ |
syscall.c | 151 //if (code != 4) thunk_printf("userret() code %d\n", code); 162 thunk_printf("lwp %p, code %3d, nargs %d, argsize %3d\t%s(", 166 thunk_printf("\"%s\", %"PRIx32", %"PRIx32"", (char *) (args[0]), (uint) args[1], (uint) args[2]); 169 thunk_printf("\"%s\", %"PRIx32"", (char *) (args[0]), (uint) args[1]); 172 thunk_printf("\"%s\"", (char *) (args[0])); 175 thunk_printf("\"%s\", %"PRIx32", %"PRIx32"", (char *) (args[0]), (uint) (args[1]), (uint) args[2]); 178 thunk_printf("\"%s\", [", (char *) (args[0])); 182 thunk_printf("\"%s\", ", *argv); 185 thunk_printf("\b\b"); 187 thunk_printf("], ["); [all...] |
process_machdep.c | 122 thunk_printf("%s called, not implemented\n", __func__); 129 thunk_printf("%s called, not implemented\n", __func__); 136 thunk_printf("%s called, not implemented\n", __func__); 143 thunk_printf("%s called, not implemented\n", __func__); 150 thunk_printf("%s called, not implemented\n", __func__); 157 thunk_printf("%s called, not implemented\n", __func__);
|
machdep.c | 107 thunk_printf("usage: %s [-acdqsvxz]" 115 thunk_printf(" (ex. \"%s" 164 thunk_printf("bad net= format\n"); 197 thunk_printf("bad vnc= format\n"); 203 thunk_printf("bad vnc= format\n"); 214 thunk_printf("too many disk images " 228 thunk_printf("too many vdevs " 236 thunk_printf("bad vdev= format\n"); 242 thunk_printf("unknown vdev device type\n"); 253 thunk_printf("%s: unknown parameter\n", argv[i]) [all...] |
trap.c | 250 thunk_printf("memaccess error, pc %p, va %p, sp %p\n", 264 thunk_printf("SIGILL!\n"); 265 thunk_printf("\tsi_signo = %d\n", info->si_signo); 266 thunk_printf("\tsi_errno = %d\n", info->si_errno); 267 thunk_printf("\tsi_code = %d\n", info->si_code); 269 thunk_printf("\t\tIllegal opcode"); 271 thunk_printf("\t\tIllegal operand"); 273 thunk_printf("\t\tIllegal addressing mode"); 275 thunk_printf("\t\tIllegal trap"); 277 thunk_printf("\t\tPrivileged opcode") [all...] |
kgdb_machdep.c | 248 thunk_printf("...[kgdb connecting]..."); 265 //thunk_printf("[<%c]", ch); 278 //thunk_printf("[>%c]", ch); 307 thunk_printf("entering trap\n"); 308 thunk_printf(" signo %d, pc %p, va %p\n", signo, (void *) pc, (void *) va);
|
pmap.c | 692 //thunk_printf("%s: no mapping yet for %p\n", 1125 thunk_printf("%p not in [%p, %p]\n", (void *) va,
|
thunk.c | 113 thunk_printf(const char *fmt, ...) function in typeref:typename:void
|
/src/sys/arch/usermode/target/i386/ |
cpu_i386.c | 113 thunk_printf("%s: ", __func__); 114 thunk_printf("flags %d, ", (int) ksi->ksi_flags); 115 thunk_printf("to lwp %d, signo %d, code %d, errno %d\n",
|
/src/sys/arch/usermode/target/x86_64/ |
cpu_x86_64.c | 110 thunk_printf("%s: ", __func__); 111 thunk_printf("flags %d, ", (int) ksi->ksi_flags); 112 thunk_printf("to lwp %d, signo %d, code %d, errno %d\n",
|
/src/sys/arch/usermode/include/ |
thunk.h | 81 void thunk_printf(const char *fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
|
/src/sys/arch/usermode/dev/ |
vatapi.c | 341 thunk_printf("unhandled/unknown retstst %d\n", kreq.retsts);
|
cpu.c | 366 thunk_printf("%s: flags %x\n", __func__, flags);
|