GNUnet 0.21.1
speedup.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int GNUNET_SPEEDUP_start_ (const struct GNUNET_CONFIGURATION_Handle *cfg)
 Start task that may speed up our system clock artificially. More...
 
void GNUNET_SPEEDUP_stop_ (void)
 Stop tasks that modify clock behavior. More...
 

Function Documentation

◆ GNUNET_SPEEDUP_start_()

int GNUNET_SPEEDUP_start_ ( const struct GNUNET_CONFIGURATION_Handle cfg)

Start task that may speed up our system clock artificially.

Parameters
cfgconfiguration to use
Returns
GNUNET_OK on success, GNUNET_SYSERR if the speedup was not configured

Definition at line 60 of file speedup.c.

61{
63 if (GNUNET_OK !=
65 "testing",
66 "SPEEDUP_INTERVAL",
67 &interval))
68 return GNUNET_SYSERR;
69 if (GNUNET_OK !=
71 "testing",
72 "SPEEDUP_DELTA",
73 &delta))
74 return GNUNET_SYSERR;
75
76 if ((0 == interval.rel_value_us) ||
77 (0 == delta.rel_value_us))
78 {
80 "Speed up disabled\n");
81 return GNUNET_OK;
82 }
84 "Speed up execution by %s\n",
87 "Speed up executed every %s\n",
91 NULL);
92 return GNUNET_OK;
93}
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:109
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_time(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, struct GNUNET_TIME_Relative *time)
Get a configuration value that should be a relative time.
@ GNUNET_OK
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
@ GNUNET_ERROR_TYPE_DEBUG
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_now_with_lifeness(int lifeness, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run as soon as possible with the (transitive) ignore-shutdown flag either e...
Definition: scheduler.c:1373
const char * GNUNET_STRINGS_relative_time_to_string(struct GNUNET_TIME_Relative delta, int do_round)
Give relative time in human-readable fancy format.
Definition: strings.c:570
static void do_speedup(void *cls)
Definition: speedup.c:42
static struct GNUNET_TIME_Relative interval
Definition: speedup.c:34
static struct GNUNET_SCHEDULER_Task * speedup_task
Definition: speedup.c:38
#define LOG(kind,...)
Definition: speedup.c:31
static struct GNUNET_TIME_Relative delta
Definition: speedup.c:36
uint64_t rel_value_us
The actual value.

References cfg, delta, do_speedup(), GNUNET_assert, GNUNET_CONFIGURATION_get_value_time(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_NO, GNUNET_OK, GNUNET_SCHEDULER_add_now_with_lifeness(), GNUNET_STRINGS_relative_time_to_string(), GNUNET_SYSERR, interval, LOG, GNUNET_TIME_Relative::rel_value_us, and speedup_task.

Referenced by program_main().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GNUNET_SPEEDUP_stop_()

void GNUNET_SPEEDUP_stop_ ( void  )

Stop tasks that modify clock behavior.

Definition at line 100 of file speedup.c.

101{
102 if (NULL != speedup_task)
103 {
105 speedup_task = NULL;
106 }
107 if ((0 != interval.rel_value_us) &&
108 (0 != delta.rel_value_us))
110 "Stopped execution speed up\n");
111}
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition: scheduler.c:981

References delta, GNUNET_ERROR_TYPE_DEBUG, GNUNET_SCHEDULER_cancel(), interval, LOG, GNUNET_TIME_Relative::rel_value_us, and speedup_task.

Referenced by GNUNET_SERVICE_main(), GNUNET_SERVICE_run_(), and shutdown_task().

Here is the call graph for this function:
Here is the caller graph for this function: