X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Foptions.h;h=0416dd5e80686a390293c7ba8af401700b0da8a3;hb=e0f849d11ae14ee0637786b6663436aafff90254;hp=297acf4acfd1c22fbff30356192d9970597ea4ae;hpb=43c1519cb60f8fef09043b9af6f43d319db12e3d;p=matches%2FMCTX3420.git diff --git a/server/options.h b/server/options.h index 297acf4..0416dd5 100644 --- a/server/options.h +++ b/server/options.h @@ -1,6 +1,6 @@ /** * @file options.h - * @purpose Define the Options structure and the g_options variable + * @brief Define the Options structure and the g_options variable */ #ifndef _OPTIONS_H @@ -14,6 +14,13 @@ typedef struct const char * program; /** Determines at what level log messages are shown **/ int verbosity; + /** Time at which program begins to run **/ + struct timeval start_time; + /** Time at which program exits **/ + struct timeval end_time; + + /** Path to ADC files **/ + char * adc_device_path; } Options;