Fixing the missing initialization of the field 'initialized' in the global context...
authorThomas Bertauld <thomas.bertauld@gmail.com>
Sat, 10 Oct 2015 23:37:18 +0000 (19:37 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Tue, 13 Oct 2015 18:03:52 +0000 (14:03 -0400)
platforms/parallella/barectf-platform-parallella.c

index b20cbffac2b5527ab031d9a0c280672f9bb06d12..6492359cd8a1e972bf1333f4c1a5975b5270aa4e 100644 (file)
@@ -230,6 +230,9 @@ int tracing_init(void)
        /* open first packet */
        open_packet(&g_tracing_ctx);
 
+       /* acknowledge initialization */
+       g_tracing_ctx.initialized = 1;
+
        return 0;
 }
 
This page took 0.025272 seconds and 4 git commands to generate.