Searched defs:newthr (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.c247 thread_info* newthr; local
248 if ( (newthr = (thread_info*) calloc(1, sizeof(thread_info))) == NULL) {
254 newthr->pthread_id = pthread_id;
255 newthr->lwp_id = lwp_id;
258 newthr->next = ph->threads;
259 ph->threads = newthr;
261 return newthr;
H A Dps_core.c541 thread_info* newthr; local
544 if((newthr = add_thread_info(ph, (pthread_t) -1, prstat->pr_pid)) == NULL)
548 memcpy(&newthr->regs, &prstat->pr_reg, sizeof(struct reg));
554 print_debug("\teax = 0x%x\n", newthr->regs.r_eax);
555 print_debug("\tebx = 0x%x\n", newthr->regs.r_ebx);
556 print_debug("\tecx = 0x%x\n", newthr->regs.r_ecx);
557 print_debug("\tedx = 0x%x\n", newthr->regs.r_edx);
558 print_debug("\tesp = 0x%x\n", newthr->regs.r_esp);
559 print_debug("\tebp = 0x%x\n", newthr->regs.r_ebp);
560 print_debug("\tesi = 0x%x\n", newthr
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.c245 thread_info* newthr; local
246 if ( (newthr = (thread_info*) calloc(1, sizeof(thread_info))) == NULL) {
252 newthr->pthread_id = pthread_id;
253 newthr->lwp_id = lwp_id;
256 newthr->next = ph->threads;
257 ph->threads = newthr;
259 return newthr;
H A Dps_core.c535 thread_info* newthr; local
538 if((newthr = add_thread_info(ph, (pthread_t) -1, prstat->pr_pid)) == NULL)
542 memcpy(&newthr->regs, prstat->pr_reg, sizeof(struct user_regs_struct));
548 print_debug("\teax = 0x%x\n", newthr->regs.eax);
549 print_debug("\tebx = 0x%x\n", newthr->regs.ebx);
550 print_debug("\tecx = 0x%x\n", newthr->regs.ecx);
551 print_debug("\tedx = 0x%x\n", newthr->regs.edx);
552 print_debug("\tesp = 0x%x\n", newthr->regs.esp);
553 print_debug("\tebp = 0x%x\n", newthr->regs.ebp);
554 print_debug("\tesi = 0x%x\n", newthr
[all...]

Completed in 39 milliseconds