Searched refs:thread_info (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.h47 typedef struct thread_info { struct
51 struct thread_info* next;
52 } thread_info; typedef in typeref:struct:thread_info
103 thread_info* threads; // head of thread list
126 thread_info* add_thread_info(struct ps_prochandle* ph, pthread_t pthread_id, lwpid_t lwp_id);
H A Dlibproc_impl.c133 thread_info* thr = ph->threads;
135 thread_info *next = thr->next;
246 thread_info* add_thread_info(struct ps_prochandle* ph, pthread_t pthread_id, lwpid_t lwp_id) {
247 thread_info* newthr;
248 if ( (newthr = (thread_info*) calloc(1, sizeof(thread_info))) == NULL) {
249 print_debug("can't allocate memory for thread_info\n");
292 // read thread_info using libthread_db
326 thread_info* thr = ph->threads;
H A Dps_proc.c437 thread_info* thr = NULL;
H A DMacosxDebuggerLocal.m217 * The thread_id should be the result from calling thread_info() with THREAD_IDENTIFIER_INFO
249 result = thread_info(thread_list[i], THREAD_IDENTIFIER_INFO, (thread_info_t) &m_ident_info, &count);
252 printf("thread_info returned 0x%x\n", result);
H A Dps_core.c512 thread_info* thr = ph->threads;
541 thread_info* newthr;
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.h47 typedef struct thread_info { struct
51 struct thread_info* next;
52 } thread_info; typedef in typeref:struct:thread_info
101 thread_info* threads; // head of thread list
124 thread_info* add_thread_info(struct ps_prochandle* ph, pthread_t pthread_id, lwpid_t lwp_id);
H A Dlibproc_impl.c134 thread_info* thr = ph->threads;
136 thread_info *next = thr->next;
244 thread_info* add_thread_info(struct ps_prochandle* ph, pthread_t pthread_id, lwpid_t lwp_id) {
245 thread_info* newthr;
246 if ( (newthr = (thread_info*) calloc(1, sizeof(thread_info))) == NULL) {
247 print_debug("can't allocate memory for thread_info\n");
290 // read thread_info using libthread_db
324 thread_info* thr = ph->threads;
H A Dps_proc.c310 thread_info* thr = ph->threads;
331 thread_info* thr = NULL;
H A Dps_core.c512 thread_info* thr = ph->threads;
535 thread_info* newthr;
/openjdk7/hotspot/src/share/vm/services/
H A DmemReporter.hpp54 virtual void thread_info(size_t stack_reserved_amt, size_t stack_committed_amt) = 0;
207 void thread_info(size_t stack_reserved_amt, size_t stack_committed_amt) { function in class:BaselineTTYOutputer
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp979 thread_info(::mach_thread_self(), THREAD_IDENTIFIER_INFO,
5354 kr = thread_info(mach_thread, THREAD_BASIC_INFO, (thread_info_t)&tinfo, &tcount);

Completed in 63 milliseconds