threads: set thread titles

This commit is contained in:
Daniel Eklöf 2019-08-01 20:09:16 +02:00
parent 4801e39eae
commit bd734d5bed
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 15 additions and 0 deletions

7
main.c
View file

@ -12,6 +12,7 @@
#include <sys/timerfd.h>
#include <sys/sysinfo.h>
#include <sys/prctl.h>
#include <freetype/tttables.h>
#include <wayland-client.h>
@ -196,6 +197,12 @@ keyboard_repeater(void *arg)
{
struct terminal *term = arg;
char proc_title[16];
snprintf(proc_title, sizeof(proc_title), "foot:kbd-repeat");
if (prctl(PR_SET_NAME, proc_title, 0, 0, 0) < 0)
LOG_ERRNO("kbd repeat: failed to set process title");
while (true) {
LOG_DBG("repeater: waiting for start");

View file

@ -1,9 +1,11 @@
#include "render.h"
#include <string.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/timerfd.h>
#include <sys/prctl.h>
#include <wayland-cursor.h>
#include <xdg-shell.h>
@ -316,6 +318,12 @@ render_worker_thread(void *_ctx)
struct terminal *term = ctx->term;
const int my_id = ctx->my_id;
char proc_title[16];
snprintf(proc_title, sizeof(proc_title), "foot:render:%d", my_id);
if (prctl(PR_SET_NAME, proc_title, 0, 0, 0) < 0)
LOG_ERRNO("render worker %d: failed to set process title", my_id);
sem_t *start = &term->render.workers.start;
sem_t *done = &term->render.workers.done;
mtx_t *lock = &term->render.workers.lock;