adapt to change in GNUNET_OS_start_process() API (#6188)
This commit is contained in:
parent
c7e00e6317
commit
62963ae4b3
@ -599,8 +599,7 @@ parallel_benchmark (TALER_TESTING_Main main_cb,
|
|||||||
if ( (MODE_EXCHANGE == mode) || (MODE_BOTH == mode) )
|
if ( (MODE_EXCHANGE == mode) || (MODE_BOTH == mode) )
|
||||||
{
|
{
|
||||||
/* start exchange */
|
/* start exchange */
|
||||||
exchanged = GNUNET_OS_start_process (GNUNET_NO,
|
exchanged = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-httpd",
|
"taler-exchange-httpd",
|
||||||
"taler-exchange-httpd",
|
"taler-exchange-httpd",
|
||||||
@ -626,8 +625,7 @@ parallel_benchmark (TALER_TESTING_Main main_cb,
|
|||||||
return 77;
|
return 77;
|
||||||
}
|
}
|
||||||
/* start auditor */
|
/* start auditor */
|
||||||
auditord = GNUNET_OS_start_process (GNUNET_NO,
|
auditord = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-httpd",
|
"taler-auditor-httpd",
|
||||||
"taler-auditor-httpd",
|
"taler-auditor-httpd",
|
||||||
@ -658,8 +656,7 @@ parallel_benchmark (TALER_TESTING_Main main_cb,
|
|||||||
return 77;
|
return 77;
|
||||||
}
|
}
|
||||||
/* start exchange wirewatch */
|
/* start exchange wirewatch */
|
||||||
wirewatch = GNUNET_OS_start_process (GNUNET_NO,
|
wirewatch = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-wirewatch",
|
"taler-exchange-wirewatch",
|
||||||
"taler-exchange-wirewatch",
|
"taler-exchange-wirewatch",
|
||||||
@ -712,8 +709,7 @@ parallel_benchmark (TALER_TESTING_Main main_cb,
|
|||||||
GNUNET_YES,
|
GNUNET_YES,
|
||||||
0, 0)));
|
0, 0)));
|
||||||
|
|
||||||
exchange_slave = GNUNET_OS_start_process (GNUNET_NO,
|
exchange_slave = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
|
||||||
GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
|
|
||||||
exchange_slave_pipe, NULL, NULL,
|
exchange_slave_pipe, NULL, NULL,
|
||||||
"ssh",
|
"ssh",
|
||||||
"ssh",
|
"ssh",
|
||||||
@ -1087,8 +1083,7 @@ main (int argc,
|
|||||||
struct GNUNET_OS_Process *compute_wire_response;
|
struct GNUNET_OS_Process *compute_wire_response;
|
||||||
|
|
||||||
compute_wire_response
|
compute_wire_response
|
||||||
= GNUNET_OS_start_process (GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-wire",
|
"taler-exchange-wire",
|
||||||
"taler-exchange-wire",
|
"taler-exchange-wire",
|
||||||
|
@ -140,8 +140,7 @@ main (int argc,
|
|||||||
GNUNET_log_setup ("test-auditor-api-version",
|
GNUNET_log_setup ("test-auditor-api-version",
|
||||||
"INFO",
|
"INFO",
|
||||||
NULL);
|
NULL);
|
||||||
proc = GNUNET_OS_start_process (GNUNET_NO,
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-httpd",
|
"taler-auditor-httpd",
|
||||||
"taler-auditor-httpd",
|
"taler-auditor-httpd",
|
||||||
|
@ -63,8 +63,7 @@ auditor_run (void *cls,
|
|||||||
|
|
||||||
(void) cmd;
|
(void) cmd;
|
||||||
ks->auditor_proc
|
ks->auditor_proc
|
||||||
= GNUNET_OS_start_process (GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor",
|
"taler-auditor",
|
||||||
"taler-auditor",
|
"taler-auditor",
|
||||||
|
@ -63,8 +63,7 @@ auditor_dbinit_run (void *cls,
|
|||||||
|
|
||||||
(void) cmd;
|
(void) cmd;
|
||||||
ks->auditor_dbinit_proc
|
ks->auditor_dbinit_proc
|
||||||
= GNUNET_OS_start_process (GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-dbinit",
|
"taler-auditor-dbinit",
|
||||||
"taler-auditor-dbinit",
|
"taler-auditor-dbinit",
|
||||||
|
@ -62,8 +62,7 @@ aggregator_run (void *cls,
|
|||||||
|
|
||||||
(void) cmd;
|
(void) cmd;
|
||||||
as->aggregator_proc
|
as->aggregator_proc
|
||||||
= GNUNET_OS_start_process (GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-aggregator",
|
"taler-exchange-aggregator",
|
||||||
"taler-exchange-aggregator",
|
"taler-exchange-aggregator",
|
||||||
|
@ -121,9 +121,8 @@ auditor_sign_run (void *cls,
|
|||||||
|
|
||||||
GNUNET_CONFIGURATION_destroy (cfg);
|
GNUNET_CONFIGURATION_destroy (cfg);
|
||||||
|
|
||||||
ass->auditor_sign_proc = GNUNET_OS_start_process
|
ass->auditor_sign_proc
|
||||||
(GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-sign",
|
"taler-auditor-sign",
|
||||||
"taler-auditor-sign",
|
"taler-auditor-sign",
|
||||||
|
@ -103,8 +103,7 @@ closer_run (void *cls,
|
|||||||
as->reserve_pub = *reserve_pubp;
|
as->reserve_pub = *reserve_pubp;
|
||||||
}
|
}
|
||||||
as->closer_proc
|
as->closer_proc
|
||||||
= GNUNET_OS_start_process (GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-closer",
|
"taler-exchange-closer",
|
||||||
"taler-exchange-closer",
|
"taler-exchange-closer",
|
||||||
|
@ -76,9 +76,9 @@ keyup_run (void *cls,
|
|||||||
|
|
||||||
if (GNUNET_YES == ks->with_now)
|
if (GNUNET_YES == ks->with_now)
|
||||||
{
|
{
|
||||||
ks->keyup_proc = GNUNET_OS_start_process
|
ks->keyup_proc
|
||||||
(GNUNET_NO,
|
= GNUNET_OS_start_process
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
(GNUNET_OS_INHERIT_STD_ALL,
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
@ -89,9 +89,9 @@ keyup_run (void *cls,
|
|||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
ks->keyup_proc = GNUNET_OS_start_process
|
ks->keyup_proc
|
||||||
(GNUNET_NO,
|
= GNUNET_OS_start_process
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
(GNUNET_OS_INHERIT_STD_ALL,
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
|
@ -61,8 +61,7 @@ transfer_run (void *cls,
|
|||||||
struct TransferState *as = cls;
|
struct TransferState *as = cls;
|
||||||
|
|
||||||
as->transfer_proc
|
as->transfer_proc
|
||||||
= GNUNET_OS_start_process (GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-transfer",
|
"taler-exchange-transfer",
|
||||||
"taler-exchange-transfer",
|
"taler-exchange-transfer",
|
||||||
|
@ -61,8 +61,7 @@ wirewatch_run (void *cls,
|
|||||||
struct WirewatchState *ws = cls;
|
struct WirewatchState *ws = cls;
|
||||||
|
|
||||||
ws->wirewatch_proc
|
ws->wirewatch_proc
|
||||||
= GNUNET_OS_start_process (GNUNET_NO,
|
= GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-wirewatch",
|
"taler-exchange-wirewatch",
|
||||||
"taler-exchange-wirewatch",
|
"taler-exchange-wirewatch",
|
||||||
|
@ -164,8 +164,7 @@ revoke_run (void *cls,
|
|||||||
&denom_pub->h_key,
|
&denom_pub->h_key,
|
||||||
sizeof (struct GNUNET_HashCode));
|
sizeof (struct GNUNET_HashCode));
|
||||||
|
|
||||||
rs->revoke_proc = GNUNET_OS_start_process (GNUNET_NO,
|
rs->revoke_proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
|
@ -232,8 +232,7 @@ hack_response_code_run (void *cls,
|
|||||||
GNUNET_asprintf (&http_status, "%u",
|
GNUNET_asprintf (&http_status, "%u",
|
||||||
hrcs->http_status);
|
hrcs->http_status);
|
||||||
|
|
||||||
hrcs->proc = GNUNET_OS_start_process
|
hrcs->proc = GNUNET_OS_start_process (
|
||||||
(GNUNET_NO,
|
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
GNUNET_OS_INHERIT_STD_ALL,
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -355,8 +354,7 @@ delete_object_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct DeleteObjectState *dos = cls;
|
struct DeleteObjectState *dos = cls;
|
||||||
|
|
||||||
dos->proc = GNUNET_OS_start_process (GNUNET_NO,
|
dos->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -443,8 +441,7 @@ modify_object_dl_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct ModifyObjectState *mos = cls;
|
struct ModifyObjectState *mos = cls;
|
||||||
|
|
||||||
mos->proc = GNUNET_OS_start_process (GNUNET_NO,
|
mos->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -476,8 +473,7 @@ modify_object_ul_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct ModifyObjectState *mos = cls;
|
struct ModifyObjectState *mos = cls;
|
||||||
|
|
||||||
mos->proc = GNUNET_OS_start_process (GNUNET_NO,
|
mos->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -509,8 +505,7 @@ modify_header_dl_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct ModifyObjectState *mos = cls;
|
struct ModifyObjectState *mos = cls;
|
||||||
|
|
||||||
mos->proc = GNUNET_OS_start_process (GNUNET_NO,
|
mos->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -631,8 +626,7 @@ flip_upload_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct FlipObjectState *fos = cls;
|
struct FlipObjectState *fos = cls;
|
||||||
|
|
||||||
fos->proc = GNUNET_OS_start_process (GNUNET_NO,
|
fos->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -663,8 +657,7 @@ flip_download_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct FlipObjectState *fos = cls;
|
struct FlipObjectState *fos = cls;
|
||||||
|
|
||||||
fos->proc = GNUNET_OS_start_process (GNUNET_NO,
|
fos->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -813,8 +806,7 @@ malform_request_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct MalformRequestState *mrs = cls;
|
struct MalformRequestState *mrs = cls;
|
||||||
|
|
||||||
mrs->proc = GNUNET_OS_start_process (GNUNET_NO,
|
mrs->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
@ -900,8 +892,7 @@ malform_response_run (void *cls,
|
|||||||
{
|
{
|
||||||
struct MalformResponseState *mrs = cls;
|
struct MalformResponseState *mrs = cls;
|
||||||
|
|
||||||
mrs->proc = GNUNET_OS_start_process (GNUNET_NO,
|
mrs->proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
|
@ -110,8 +110,7 @@ TALER_TESTING_run_keyup (const char *config_filename,
|
|||||||
{
|
{
|
||||||
struct GNUNET_OS_Process *proc;
|
struct GNUNET_OS_Process *proc;
|
||||||
|
|
||||||
proc = GNUNET_OS_start_process (GNUNET_NO,
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
"taler-exchange-keyup",
|
"taler-exchange-keyup",
|
||||||
@ -149,8 +148,7 @@ TALER_TESTING_run_auditor_sign (const char *config_filename,
|
|||||||
{
|
{
|
||||||
struct GNUNET_OS_Process *proc;
|
struct GNUNET_OS_Process *proc;
|
||||||
|
|
||||||
proc = GNUNET_OS_start_process (GNUNET_NO,
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-sign",
|
"taler-auditor-sign",
|
||||||
"taler-auditor-sign",
|
"taler-auditor-sign",
|
||||||
@ -195,8 +193,7 @@ TALER_TESTING_run_auditor_exchange (const char *config_filename,
|
|||||||
exchange_base_url,
|
exchange_base_url,
|
||||||
exchange_master_pub);
|
exchange_master_pub);
|
||||||
|
|
||||||
proc = GNUNET_OS_start_process (GNUNET_NO,
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-exchange",
|
"taler-auditor-exchange",
|
||||||
"taler-auditor-exchange",
|
"taler-auditor-exchange",
|
||||||
@ -244,8 +241,7 @@ TALER_TESTING_exchange_db_reset (const char *config_filename)
|
|||||||
enum GNUNET_OS_ProcessStatusType type;
|
enum GNUNET_OS_ProcessStatusType type;
|
||||||
unsigned long code;
|
unsigned long code;
|
||||||
|
|
||||||
proc = GNUNET_OS_start_process (GNUNET_NO,
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-dbinit",
|
"taler-exchange-dbinit",
|
||||||
"taler-exchange-dbinit",
|
"taler-exchange-dbinit",
|
||||||
@ -302,8 +298,7 @@ TALER_TESTING_auditor_db_reset (const char *config_filename)
|
|||||||
enum GNUNET_OS_ProcessStatusType type;
|
enum GNUNET_OS_ProcessStatusType type;
|
||||||
unsigned long code;
|
unsigned long code;
|
||||||
|
|
||||||
proc = GNUNET_OS_start_process (GNUNET_NO,
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-dbinit",
|
"taler-auditor-dbinit",
|
||||||
"taler-auditor-dbinit",
|
"taler-auditor-dbinit",
|
||||||
@ -782,8 +777,7 @@ TALER_TESTING_setup_with_exchange_cfg (void *cls,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
GNUNET_free (serve);
|
GNUNET_free (serve);
|
||||||
exchanged = GNUNET_OS_start_process (GNUNET_NO,
|
exchanged = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-httpd",
|
"taler-exchange-httpd",
|
||||||
"taler-exchange-httpd",
|
"taler-exchange-httpd",
|
||||||
@ -887,8 +881,7 @@ TALER_TESTING_setup_with_auditor_and_exchange_cfg (void *cls,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
GNUNET_free (serve);
|
GNUNET_free (serve);
|
||||||
auditord = GNUNET_OS_start_process (GNUNET_NO,
|
auditord = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-auditor-httpd",
|
"taler-auditor-httpd",
|
||||||
"taler-auditor-httpd",
|
"taler-auditor-httpd",
|
||||||
|
@ -93,8 +93,7 @@ TALER_TWISTER_run_twister (const char *config_filename)
|
|||||||
unsigned long code;
|
unsigned long code;
|
||||||
enum GNUNET_OS_ProcessStatusType type;
|
enum GNUNET_OS_ProcessStatusType type;
|
||||||
|
|
||||||
proc = GNUNET_OS_start_process (GNUNET_NO,
|
proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister-service",
|
"taler-twister-service",
|
||||||
"taler-twister-service",
|
"taler-twister-service",
|
||||||
@ -103,8 +102,7 @@ TALER_TWISTER_run_twister (const char *config_filename)
|
|||||||
if (NULL == proc)
|
if (NULL == proc)
|
||||||
TWISTER_FAIL ();
|
TWISTER_FAIL ();
|
||||||
|
|
||||||
client_proc = GNUNET_OS_start_process (GNUNET_NO,
|
client_proc = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
GNUNET_OS_INHERIT_STD_ALL,
|
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
"taler-twister",
|
"taler-twister",
|
||||||
|
Loading…
Reference in New Issue
Block a user