commented unused functions

This commit is contained in:
fros4943 2010-03-29 12:57:57 +00:00
parent e7c6002432
commit e640c61b78

View File

@ -118,7 +118,10 @@ static uint8_t preset_cmd;
static int preset_fd; static int preset_fd;
/* bookkeeping */ /* bookkeeping */
static int nr_pongs=0, nr_checkpoints=0, nr_rollbacks=0, nr_metrics=0; #if WITH_SERIAL_COMMANDS
static int nr_pongs=0;
#endif /* WITH_SERIAL_COMMANDS */
static int nr_checkpoints=0, nr_rollbacks=0, nr_metrics=0;
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
typedef union { typedef union {
@ -283,6 +286,7 @@ thread_rollback(int fd)
read_byte(fd); /* Coffee padding byte */ read_byte(fd); /* Coffee padding byte */
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#if WITH_SERIAL_COMMANDS
static uint32_t static uint32_t
thread_metric_tx(void) thread_metric_tx(void)
{ {
@ -296,6 +300,7 @@ thread_metric_rx(void)
energest_flush(); energest_flush();
return energest_type_time(ENERGEST_TYPE_LISTEN); return energest_type_time(ENERGEST_TYPE_LISTEN);
} }
#endif /* WITH_SERIAL_COMMANDS */
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static void static void
thread_metrics(void) thread_metrics(void)