Added thread names

This commit is contained in:
James Booth
2015-06-07 18:49:02 +01:00
parent 31506449bd
commit 40a29755a6
3 changed files with 10 additions and 1 deletions

View File

@@ -24,6 +24,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <sys/prctl.h>
#include <stdint.h> #include <stdint.h>
#include <sys/socket.h> #include <sys/socket.h>
@@ -89,6 +90,8 @@ send_response(struct MHD_Connection* conn, const char* body, int status_code)
int connection_cb(void* cls, struct MHD_Connection* conn, const char* url, const char* method, int connection_cb(void* cls, struct MHD_Connection* conn, const char* url, const char* method,
const char* version, const char* data, size_t* size, void** con_cls) const char* version, const char* data, size_t* size, void** con_cls)
{ {
prctl(PR_SET_NAME, "stbbrhttp");
if (*con_cls == NULL) { if (*con_cls == NULL) {
ConnectionInfo *con_info = create_connection_info(); ConnectionInfo *con_info = create_connection_info();

View File

@@ -24,6 +24,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <sys/prctl.h>
#include <glib.h> #include <glib.h>
#include <glib/gstdio.h> #include <glib/gstdio.h>
@@ -126,7 +127,9 @@ log_println(const char * const msg, ...)
GTimeZone *tz = g_time_zone_new_local(); GTimeZone *tz = g_time_zone_new_local();
GDateTime *dt = g_date_time_new_now(tz); GDateTime *dt = g_date_time_new_now(tz);
gchar *date_fmt = g_date_time_format(dt, "%d/%m/%Y %H:%M:%S"); gchar *date_fmt = g_date_time_format(dt, "%d/%m/%Y %H:%M:%S");
fprintf(logp, "%s: %s\n", date_fmt, fmt_msg->str); char thr_name[16];
prctl(PR_GET_NAME, thr_name);
fprintf(logp, "%s: [%s] %s\n", date_fmt, thr_name, fmt_msg->str);
g_date_time_unref(dt); g_date_time_unref(dt);
g_time_zone_unref(tz); g_time_zone_unref(tz);
fflush(logp); fflush(logp);

View File

@@ -27,6 +27,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/prctl.h>
#include "server/xmppclient.h" #include "server/xmppclient.h"
#include "server/stream_parser.h" #include "server/stream_parser.h"
@@ -255,6 +256,8 @@ server_wait_for(char *id)
void* void*
_start_server_cb(void* userdata) _start_server_cb(void* userdata)
{ {
prctl(PR_SET_NAME, "stbbr");
struct sockaddr_in client_addr; struct sockaddr_in client_addr;
// listen socket non blocking // listen socket non blocking