This is the mail archive of the cygwin-patches mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 0/2] Thread name support


Re-heat Yaakov's patch [1] for adding pthread_getname_np and pthread_setname_np
Use the native interface [2] for sending thread names to debugger 
 
[1] https://cygwin.com/ml/cygwin-patches/2012-q1/msg00022.html
[2] https://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx

Jon Turney (2):
  Add pthread_getname_np and pthread_setname_np
  Send thread names to debugger

 winsup/cygwin/common.din               |  2 ++
 winsup/cygwin/cygthread.cc             |  2 ++
 winsup/cygwin/dcrt0.cc                 |  1 +
 winsup/cygwin/exceptions.cc            |  2 +-
 winsup/cygwin/include/cygwin/version.h |  3 +-
 winsup/cygwin/include/pthread.h        |  2 ++
 winsup/cygwin/miscfuncs.cc             | 28 +++++++++++++++
 winsup/cygwin/miscfuncs.h              |  2 ++
 winsup/cygwin/net.cc                   |  2 ++
 winsup/cygwin/profil.c                 |  2 ++
 winsup/cygwin/release/2.6.0            |  4 +++
 winsup/cygwin/thread.cc                | 66 +++++++++++++++++++++++++++++++++-
 winsup/cygwin/thread.h                 |  1 +
 winsup/doc/new-features.xml            | 12 +++++++
 winsup/doc/posix.xml                   |  2 ++
 15 files changed, 128 insertions(+), 3 deletions(-)
 create mode 100644 winsup/cygwin/release/2.6.0

-- 
2.8.3


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]