diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-02-08 21:25:55 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-02-08 21:25:55 +0100 |
commit | 883af6aa527c4d0b43adc99c19e1cbb53153a7a0 (patch) | |
tree | ab4170eae8919f11855e3b8a69f13457b4fa601d /pfinet/ethernet.c | |
parent | 7ac18bc84ae7c5a5f2f255b6d5337eb085bb86cd (diff) |
Add names to threads
Diffstat (limited to 'pfinet/ethernet.c')
-rw-r--r-- | pfinet/ethernet.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pfinet/ethernet.c b/pfinet/ethernet.c index ae738de5..234e9007 100644 --- a/pfinet/ethernet.c +++ b/pfinet/ethernet.c @@ -102,6 +102,8 @@ static struct port_bucket *etherport_bucket; static void * ethernet_thread (void *arg) { + pthread_setname_np (pthread_self (), "ethernet"); + ports_manage_port_operations_one_thread (etherport_bucket, ethernet_demuxer, 0); |