From: Ben Pfaff <blp@nicira.com> Date: Thu, 25 Jul 2013 16:45:43 +0000 (-0700) Subject: util: Set thread name via pthreads in set_subprogram_name(). X-Git-Tag: sliver-openvswitch-2.0.90-1~34^2~37 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=0f13e65061231a56fdf9428ed1df4a614642a596;p=sliver-openvswitch.git util: Set thread name via pthreads in set_subprogram_name(). This makes "top" and "ps" output more readable on FreeBSD at least, and the names are also visible in debuggers. Suggested-by: Ed Maste <emaste@freebsd.org> Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Andy Zhou <azhou@nicira.com> Tested-by: Andy Zhou <azhou@nicira.com> --- diff --git a/configure.ac b/configure.ac index ac847bd33..9646b6a7e 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,8 @@ AC_CHECK_DECLS([sys_siglist], [], [], [[#include <signal.h>]]) AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec, struct stat.st_mtimensec], [], [], [[#include <sys/stat.h>]]) AC_CHECK_MEMBERS([struct ifreq.ifr_flagshigh], [], [], [[#include <net/if.h>]]) -AC_CHECK_FUNCS([mlockall strnlen getloadavg statvfs getmntent_r]) +AC_CHECK_FUNCS([mlockall strnlen getloadavg statvfs getmntent_r \ + pthread_setname_np pthread_set_name_np]) AC_CHECK_HEADERS([mntent.h sys/statvfs.h linux/types.h linux/if_ether.h stdatomic.h]) AC_CHECK_HEADERS([net/if_mib.h], [], [], [[#include <sys/types.h> #include <net/if.h>]]) diff --git a/lib/util.c b/lib/util.c index c69d7d150..6a721070a 100644 --- a/lib/util.c +++ b/lib/util.c @@ -395,11 +395,17 @@ get_subprogram_name(void) } /* Sets 'name' as the name of the currently running thread or process. (This - * appears in log messages.) */ + * appears in log messages and may also be visible in system process listings + * and debuggers.) */ void set_subprogram_name(const char *name) { free(subprogram_name_set(xstrdup(name))); +#if HAVE_PTHREAD_SETNAME_NP + pthread_setname_np(pthread_self(), name); +#elif HAVE_PTHREAD_SET_NAME_NP + pthread_set_name_np(pthread_self(), name); +#endif } /* Returns a pointer to a string describing the program version. The