- Timestamp:
- 03/27/15 16:19:55 (6 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- c63bcdf
- Parents:
- 14c6c08
- Location:
- lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/format_dpdk.c
r5e43b8b r915b93c 1559 1559 char name[99]; 1560 1560 name[0] = 0; 1561 #if HAVE_PTHREAD_SETNAME_NP1561 #if defined(HAVE_PTHREAD_SETNAME_NP) && defined(__linux__) 1562 1562 pthread_getname_np(pthread_self(), 1563 1563 name, sizeof(name)); -
lib/trace_parallel.c
r61f4b71 r915b93c 120 120 #if 0 121 121 uint64_t total; 122 #if def HAVE_PTHREAD_SETNAME_NP122 #if defined(HAVE_PTHREAD_SETNAME_NP) && defined(__linux__) 123 123 char t_name[50]; 124 124 pthread_getname_np(pthread_self(), t_name, sizeof(t_name)); … … 1463 1463 LIBTRACE_RINGBUFFER_BLOCKING); 1464 1464 } 1465 #if HAVE_PTHREAD_SETNAME_NP1465 #if defined(HAVE_PTHREAD_SETNAME_NP) && defined(__linux__) 1466 1466 if(name) 1467 1467 pthread_setname_np(t->tid, name);
Note: See TracChangeset
for help on using the changeset viewer.