aboutsummaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorrish9101 <rranjan@cs.iitr.ac.in>2020-03-09 10:04:32 +0530
committerrish9101 <rranjan@cs.iitr.ac.in>2020-03-09 10:04:32 +0530
commit1a582d54e51eccfecb724ef04cc17cd852193b7a (patch)
treefbbde759365e2062e6990e7c180fdae2861854b9 /include/common.h
parenta3161b902e36185631e624e41eb1ae04d32c302b (diff)
downloadAFLplusplus-1a582d54e51eccfecb724ef04cc17cd852193b7a.tar.gz
Remove get_cut_time function from multiple places and refactor code
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index ad1f81fb..0d7f4f0b 100644
--- a/include/common.h
+++ b/include/common.h
@@ -25,6 +25,8 @@
#ifndef __AFLCOMMON_H
#define __AFLCOMMON_H
+
+#include <sys/time.h>
#include "types.h"
extern u8* target_path; /* Path to target binary */
@@ -37,3 +39,29 @@ char** get_wine_argv(u8* own_loc, char** argv, int argc);
char* get_afl_env(char* env);
#endif
+/* Get unix time in milliseconds */
+
+static u64 get_cur_time(void) {
+
+ struct timeval tv;
+ struct timezone tz;
+
+ gettimeofday(&tv, &tz);
+
+ return (tv.tv_sec * 1000ULL) + (tv.tv_usec / 1000);
+
+}
+
+/* Get unix time in microseconds */
+
+static u64 get_cur_time_us(void) {
+
+ struct timeval tv;
+ struct timezone tz;
+
+ gettimeofday(&tv, &tz);
+
+ return (tv.tv_sec * 1000000ULL) + tv.tv_usec;
+
+}
+