summaryrefslogtreecommitdiff
path: root/src/worker.c
blob: 7c538d2f3de0088b4e2353fed3399cc25e44dc56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "worker.h"

#include "nanomsg/nn.h"

#include <glib.h>

int worker_init( const char *control )
{
	//~ gboolean ret = g_spawn_async_with_pipes( NULL, 
//~ ret = g_spawn_async_with_pipes( NULL, argv, NULL,
                                    //~ G_SPAWN_DO_NOT_REAP_CHILD, NULL,
                                    //~ NULL, &pid, NULL, &out, &err, NULL );	
	return 0;
}

void worker_terminate( )
{
}

int worker_free( )
{
	return 0;	
}