#include <string.h>
#include <pthread.h>
#include <sys/uio.h>
+#ifdef WANT_THREAD_NAME_NP
+#include <pthread_np.h>
+#endif
/* Libowfat */
#include "byte.h"
static pthread_t thread_id;
void clean_init( void ) {
pthread_create( &thread_id, NULL, clean_worker, NULL );
+#ifdef WANT_THREAD_NAME_NP
+ pthread_set_name_np( thread_id, "opentracker (cleanup)");
+#endif
}
void clean_deinit( void ) {
#ifdef WANT_COMPRESSION_GZIP
#include <zlib.h>
#endif
+#ifdef WANT_THREAD_NAME_NP
+#include <pthread_np.h>
+#endif
/* Libowfat */
#include "byte.h"
static pthread_t thread_id;
void fullscrape_init( ) {
pthread_create( &thread_id, NULL, fullscrape_worker, NULL );
+#ifdef WANT_THREAD_NAME_NP
+ pthread_set_name_np( thread_id, "opentracker (fullscrape)");
+#endif
}
void fullscrape_deinit( ) {
#include <sys/uio.h>
#include <string.h>
#include <pthread.h>
+#ifdef WANT_THREAD_NAME_NP
+#include <pthread_np.h>
+#endif
/* Libowfat */
#include "socket.h"
livesync_lastpacket_time = g_now;
pthread_create( &thread_id, NULL, livesync_worker, NULL );
+#ifdef WANT_THREAD_NAME_NP
+ pthread_set_name_np( thread_id, "opentracker (livesync)");
+#endif
}
void livesync_deinit() {
#include <stdio.h>
#include <string.h>
#include <pthread.h>
+#ifdef WANT_THREAD_NAME_NP
+#include <pthread_np.h>
+#endif
/* Libowfat */
#include "scan.h"
static pthread_t thread_id;
void sync_init( ) {
pthread_create( &thread_id, NULL, sync_worker, NULL );
+#ifdef WANT_THREAD_NAME_NP
+ pthread_set_name_np( thread_id, "opentracker (batchsync)");
+#endif
}
void sync_deinit( ) {