]> git.meshlink.io Git - meshlink/commitdiff
Dont use pthread_kill
authorSaverio Proto <zioproto@gmail.com>
Wed, 4 Jun 2014 14:55:55 +0000 (16:55 +0200)
committerSaverio Proto <zioproto@gmail.com>
Wed, 4 Jun 2014 14:55:55 +0000 (16:55 +0200)
src/meshlink.c
src/meshlink_internal.h

index 9a53d67aefae1c7e4e238fe9c784436c843bd58c..50a5a483c138b437808818f03a63f23239dd8867 100644 (file)
@@ -736,6 +736,7 @@ meshlink_handle_t *meshlink_open(const char *confbase, const char *name) {
        mesh->name = xstrdup(name);
        pthread_mutex_init ( &(mesh->outpacketqueue_mutex), NULL);
        pthread_mutex_init ( &(mesh->nodes_mutex), NULL);
+       mesh->threadstarted = false;
        event_loop_init(&mesh->loop);
        mesh->loop.data = mesh;
 
@@ -799,6 +800,8 @@ bool meshlink_start(meshlink_handle_t *mesh) {
                return false;
        }
 
+       mesh->threadstarted=true;
+
        return true;
 }
 
@@ -1172,8 +1175,7 @@ bool meshlink_join(meshlink_handle_t *mesh, const char *invitation) {
        char *b64key = ecdsa_get_base64_public_key(key);
 
        //Before doing meshlink_join make sure we are not connected to another mesh
-       if ( pthread_kill(mesh->thread,0) == 0){
-               printf("HELLO\n");
+       if ( mesh->threadstarted ){
                goto invalid;
        }
 
index cb60416d838d02eb6eb5efa351cfbee8eaead149..72cf638e613fac9d9ba4219a1602fd092339bde6 100644 (file)
@@ -60,6 +60,7 @@ struct meshlink_handle {
        meshlink_log_level_t log_level;
 
        pthread_t thread;
+       bool threadstarted;
        pthread_mutex_t outpacketqueue_mutex;
        pthread_mutex_t nodes_mutex;
        event_loop_t loop;