Download h source code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/*
 * Copyright 2021 Jeisson Hidalgo-Cespedes - Universidad de Costa Rica
 */

#ifndef COMMON_H
#define COMMON_H

#include <stdbool.h>
#include <time.h>
#include <unistd.h>

typedef useconds_t data_t;

#define END_OF_WORK ((data_t) -1)

double calculate_elapsed_time(const struct timespec* start_time);

#endif  // COMMON_H