aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/create
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/create')
-rw-r--r--benchmarks/create/init.c27
-rw-r--r--benchmarks/create/source.mk1
2 files changed, 28 insertions, 0 deletions
diff --git a/benchmarks/create/init.c b/benchmarks/create/init.c
new file mode 100644
index 0000000..7254296
--- /dev/null
+++ b/benchmarks/create/init.c
@@ -0,0 +1,27 @@
+#include <common/benchmark.h>
+
+void callback()
+{
+ sys_exit(1);
+}
+
+START(pid, tid, d0, d1, d2, d3)
+{
+ UNUSED(pid);
+ UNUSED(tid);
+ UNUSED(d0);
+ UNUSED(d1);
+ UNUSED(d2);
+ UNUSED(d3);
+
+ uint64_t timebase = sys_timebase();
+ uint64_t start = sys_ticks();
+
+ for (size_t i = 0; i < 1000; ++i) {
+ id_t new_id = sys_create((uintptr_t)callback, 0, 0, 0, 0);
+ sys_swap(new_id);
+ }
+
+ uint64_t end = sys_ticks();
+ report(start, end, timebase);
+}
diff --git a/benchmarks/create/source.mk b/benchmarks/create/source.mk
new file mode 100644
index 0000000..0377337
--- /dev/null
+++ b/benchmarks/create/source.mk
@@ -0,0 +1 @@
+DO != ./scripts/gen-benchmark -n create