ChangeLog 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. 2000-01-19 Ulrich Drepper <drepper@cygnus.com>
  2. * td_thr_getgregs.c: Correct size parameter of memset call.
  3. 1999-12-02 Ulrich Drepper <drepper@cygnus.com>
  4. * proc_service.h: Fix typoes in last added declaractions.
  5. 1999-12-01 Ulrich Drepper <drepper@cygnus.com>
  6. * proc_service.h: Add ps_pstop, ps_pcontinue, ps_lstop, and
  7. ps_lcontinue prototypes.
  8. 1999-11-23 Ulrich Drepper <drepper@cygnus.com>
  9. * Makefile: Correct dependency for shared object.
  10. 1999-11-22 Ulrich Drepper <drepper@cygnus.com>
  11. * td_ta_map_lwp2thr.c: Add missing brace in comparison.
  12. * thread_dbP.h (LOG): Only print message if __td_debug is nonzero.
  13. * td_init.c: Add __td_debug.
  14. 1999-11-12 Ulrich Drepper <drepper@cygnus.com>
  15. * td_ta_thr_iter.c: Start copying list of descriptors from right
  16. position in target process.
  17. * td_ta_thr_iter.c: Fix loop starting point over all but main and
  18. manager thread.
  19. * td_ta_thr_iter.c: Read descriptors for main and manager thread
  20. special since after this we can assume that no new threads will be
  21. created anymore (at least in the gdb implementation).
  22. * Makefile: Define version correctly.
  23. 1999-11-10 Ulrich Drepper <drepper@cygnus.com>
  24. * td_ta_map_lwp2thr.c: If p_pid field is zero, this is before the
  25. thread library is initialized and we get the PID from the
  26. debugger.
  27. 1999-11-08 Ulrich Drepper <drepper@cygnus.com>
  28. * td_thr_get_info.c: Make sure ti_lid is never zero.
  29. * proc_service.h: Add ps_getpid prototype.
  30. 1999-11-03 Ulrich Drepper <drepper@cygnus.com>
  31. * thread_dbP.h (ta_ok): New function.
  32. * td_ta_new.c: Add new handle to list.
  33. * td_ta_delete.c: Remove handle from list.
  34. * td_ta_clear_event.c: Use ta_ok to check for correct ta parameter.
  35. * td_ta_enable_stats.c: Likewise.
  36. * td_ta_event_addr.c: Likewise.
  37. * td_ta_event_getmsg.c: Likewise.
  38. * td_ta_get_nthreads.c: Likewise.
  39. * td_ta_get_ph.c: Likewise.
  40. * td_ta_get_stats.c: Likewise.
  41. * td_ta_map_id2thr.c: Likewise.
  42. * td_ta_map_lwp2thr.c: Likewise.
  43. * td_ta_reset_stats.c: Likewise.
  44. * td_ta_set_event.c: Likewise.
  45. * td_ta_setconcurrency.c: Likewise.
  46. * td_ta_thr_iter.c: Likewise.
  47. * td_ta_tsd_iter.c: Optimize memory retrieving.
  48. * Versions: New file.
  49. * td_thr_get_info.c (td_thr_get_info): Initialize ti_traceme.
  50. 1999-11-02 Ulrich Drepper <drepper@cygnus.com>
  51. * td_ta_thr_iter.c (td_ta_thr_iter): Optimize a bit. Read all
  52. handles at once.
  53. * thread_dbP.h (struct th_thragent): Add pthread_handle_num.
  54. * td_ta_new.c: Initialize pthread_handle_num.
  55. * td_ta_event_getmsg.c: If last event was already reported search
  56. for another unreported event.
  57. * td_thr_get_info.c (td_thr_get_info): Initialize ti_events.
  58. * Makefile (libthread_db-routines): Add td_ta_set_event,
  59. td_ta_event_getmsg, and td_ta_clear_event.
  60. * td_ta_clear_event.c: New file.
  61. * td_ta_event_getmsg.c: New file.
  62. * td_ta_new.c: Get address of __pthread_last_event in target.
  63. * td_ta_set_event.c: Don't overwrite old mask, set additional bits.
  64. * td_thr_set_event.c: Likewise.
  65. * td_thr_clear_event.c: Implement.
  66. * thread_db.h: Declare td_ta_clear_event and td_ta_event_getmsg.
  67. * thread_dbP.h (struct td_thragent): Add pthread_last_event.
  68. * td_ta_new.c: Don't test for __pthread_threads_debug. Get address
  69. of __pthread_threads_events and fail if this is not possible.
  70. * td_ta_event_addr.c: Implement.
  71. * td_thr_event_enable.c: Implement.
  72. * td_thr_event_getmsg.c: Implement.
  73. * td_thr_set_event.c: Implement.
  74. * td_ta_set_event.c: New file.
  75. * thread_db.h (td_eventbuf_t): Define.
  76. Declare td_ta_set_event.
  77. * thread_dbP.h (struct td_thragent): Add pthread_threads_eventsp.
  78. * td_thr_getfpregs.c: For terminated threads return empty structure.
  79. * td_thr_getgregs.c: Likewise.
  80. * td_thr_setfpregs.c: Likewise.
  81. * td_thr_setgregs.c: Likewise.
  82. 1999-11-01 Ulrich Drepper <drepper@cygnus.com>
  83. * thread_db.h: Shuffle types around to make things work for gdb.
  84. * thread_dbP.h: Include proc_service.h before thread_db.h.
  85. * thread_db.h: It's TD_NOLIBTHREAD, not TD_LIBTHREAD.
  86. * td_ta_new.c: Likewise.
  87. 1999-10-14 Ulrich Drepper <drepper@cygnus.com>
  88. * td_ta_new.c: p_startfct does not exist anymore.
  89. * td_thr_get_info.c: Always initialize start function.
  90. * td_ta_thr_iter.c: Don't return threads which exited (but are not
  91. joined).
  92. * td_thr_validate.c: Don't skip manager thread.
  93. 1999-10-13 Ulrich Drepper <drepper@cygnus.com>
  94. * td_ta_thr_iter.c: Use size of descriptor from *TA.
  95. Don't return manager thread before it's actually running.
  96. Actually use state parameter to distingusih at least a few states.
  97. * td_thr_get_info.c: Handle manager thread special. Fill in ti_lid,
  98. ti_state, and ti_startfunc fields.
  99. 1999-10-12 Andreas Jaeger <aj@suse.de>
  100. * thread_dbP.h: Include <string.h> for strlen declaration. Remove
  101. __libc_write prototype since this is already declared in
  102. linuxthreads/internals.h.
  103. 1999-10-11 Ulrich Drepper <drepper@cygnus.com>
  104. * thread_db.h: Fix comment for ti_type.
  105. * td_thr_get_info.c: Initialize ti_type field.
  106. * td_ta_thr_iter.c: Also report the manager thread.
  107. 1999-10-08 Andreas Jaeger <aj@suse.de>
  108. * thread_db.h: Fix typos in comments.
  109. * td_ta_get_nthreads.c (td_ta_get_nthreads): Don't hardcode
  110. libpthread library name, get it from <gnu/lib-names.h> instead.
  111. * td_ta_new.c (td_ta_new): Likewise.
  112. 1999-10-08 Ulrich Drepper <drepper@cygnus.com>
  113. * shlib-versions: New file.
  114. 1999-10-07 Ulrich Drepper <drepper@cygnus.com>
  115. * Makefile: New file.
  116. * proc_service.h: New file.
  117. * td_init.c: New file.
  118. * td_log.c: New file.
  119. * td_ta_delete.c: New file.
  120. * td_ta_enable_stats.c: New file.
  121. * td_ta_event_addr.c: New file.
  122. * td_ta_get_nthreads.c: New file.
  123. * td_ta_get_ph.c: New file.
  124. * td_ta_get_stats.c: New file.
  125. * td_ta_map_id2thr.c: New file.
  126. * td_ta_map_lwp2thr.c: New file.
  127. * td_ta_new.c: New file.
  128. * td_ta_reset_stats.c: New file.
  129. * td_ta_setconcurrency.c: New file.
  130. * td_ta_thr_iter.c: New file.
  131. * td_ta_tsd_iter.c: New file.
  132. * td_thr_clear_event.c: New file.
  133. * td_thr_dbresume.c: New file.
  134. * td_thr_dbsuspend.c: New file.
  135. * td_thr_event_enable.c: New file.
  136. * td_thr_event_getmsg.c: New file.
  137. * td_thr_get_info.c: New file.
  138. * td_thr_getfpregs.c: New file.
  139. * td_thr_getgregs.c: New file.
  140. * td_thr_getxregs.c: New file.
  141. * td_thr_getxregsize.c: New file.
  142. * td_thr_set_event.c: New file.
  143. * td_thr_setfpregs.c: New file.
  144. * td_thr_setgregs.c: New file.
  145. * td_thr_setprio.c: New file.
  146. * td_thr_setsigpending.c: New file.
  147. * td_thr_setxregs.c: New file.
  148. * td_thr_sigsetmask.c: New file.
  149. * td_thr_tsd.c: New file.
  150. * td_thr_validate.c: New file.
  151. * thread_db.h: New file.
  152. * thread_dbP.h: New file.