summaryrefslogtreecommitdiff
path: root/lib/igt_aux.h
diff options
context:
space:
mode:
authorAbdiel Janulgue <abdiel.janulgue@linux.intel.com>2016-11-16 21:38:20 +0200
committerChris Wilson <chris@chris-wilson.co.uk>2016-11-29 11:32:44 +0000
commitd529a5748f28bafd2aa74a1166e391c9468bf49d (patch)
treef16821dc6c578379ac7f685bbeba43433cba1cd5 /lib/igt_aux.h
parentf2428552bbc43f8aa5714554b6cdf162d21e5303 (diff)
lib: Make signal helper definitions reusable
Lots of test cases are re-declaring this. v2: Remove definition in benchmarks/gem_syslatency.c Signed-off-by: Abdiel Janulgue <abdiel.janulgue@linux.intel.com>
Diffstat (limited to 'lib/igt_aux.h')
-rw-r--r--lib/igt_aux.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/igt_aux.h b/lib/igt_aux.h
index d30196b9..d4da499a 100644
--- a/lib/igt_aux.h
+++ b/lib/igt_aux.h
@@ -35,6 +35,16 @@
extern drm_intel_bo **trash_bos;
extern int num_trash_bos;
+/* signal interrupt helpers */
+
+#define MSEC_PER_SEC (1000)
+#define USEC_PER_SEC (1000*MSEC_PER_SEC)
+#define NSEC_PER_SEC (1000*USEC_PER_SEC)
+
+/* signal interrupt helpers */
+#define gettid() syscall(__NR_gettid)
+#define sigev_notify_thread_id _sigev_un._tid
+
/* auxialiary igt helpers from igt_aux.c */
/* generally useful helpers */
void igt_fork_signal_helper(void);