X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Futil.c;h=1751c6f418f84e3736a47b25956542f2c7cd8d06;hb=8a8cd0acd09763f5edca6506bb286447c5776778;hp=1bb5096b0f65a8fe3772738176a336b1d830d570;hpb=5fcbed7479c5f1d2cc08c3f544f10dbbe8ec0d90;p=sliver-openvswitch.git diff --git a/lib/util.c b/lib/util.c index 1bb5096b0..1751c6f41 100644 --- a/lib/util.c +++ b/lib/util.c @@ -38,9 +38,9 @@ COVERAGE_DEFINE(util_xalloc); /* argv[0] without directory names. */ const char *program_name; -/* Ordinarily "" but set to "monitor" for a monitor process or "worker" for a - * worker process. */ -const char *subprogram_name = ""; +/* Name for the currently running thread or process, for log messages, process + * listings, and debuggers. */ +DEFINE_PER_THREAD_MALLOCED_DATA(char *, subprogram_name); /* --version option output. */ static char *program_version; @@ -281,6 +281,7 @@ ovs_error(int err_no, const char *format, ...) void ovs_error_valist(int err_no, const char *format, va_list args) { + const char *subprogram_name = get_subprogram_name(); int save_errno = errno; if (subprogram_name[0]) { @@ -385,6 +386,30 @@ set_program_name__(const char *argv0, const char *version, const char *date, } } +/* Returns the name of the currently running thread or process. */ +const char * +get_subprogram_name(void) +{ + const char *name = subprogram_name_get(); + return name ? name : ""; +} + +/* Sets 'name' as the name of the currently running thread or process. (This + * 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_GLIBC_PTHREAD_SETNAME_NP + pthread_setname_np(pthread_self(), name); +#elif HAVE_NETBSD_PTHREAD_SETNAME_NP + pthread_setname_np(pthread_self(), "%s", 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 * caller must not modify or free the returned string. */ @@ -616,7 +641,7 @@ get_cwd(void) int error = errno; free(buf); if (error != ERANGE) { - VLOG_WARN("getcwd failed (%s)", strerror(error)); + VLOG_WARN("getcwd failed (%s)", ovs_strerror(error)); return NULL; } size *= 2; @@ -754,7 +779,8 @@ follow_symlinks(const char *filename) linkname = xreadlink(fn); if (!linkname) { - VLOG_WARN("%s: readlink failed (%s)", filename, strerror(errno)); + VLOG_WARN("%s: readlink failed (%s)", + filename, ovs_strerror(errno)); return fn; }