From 3995fb8aee32783d3386d82a5a6910a86c7bf38c Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sun, 8 Mar 2015 11:58:06 +0100 Subject: Add two entropy sources. Warning: prng is not secure in any way, I have no knowlege of such things. --- src/kernel/core/worker.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/kernel/core/worker.c') diff --git a/src/kernel/core/worker.c b/src/kernel/core/worker.c index e367115..cb7bf34 100644 --- a/src/kernel/core/worker.c +++ b/src/kernel/core/worker.c @@ -2,6 +2,7 @@ #include #include #include +#include static uint64_t time = 0; static uint64_t next_task_time = UINT64_MAX; @@ -58,6 +59,8 @@ void worker_thread(void* x) { mutex_unlock(&tasks_mutex); if (t != 0) { + prng_add_entropy((uint8_t*)&t, sizeof(t)); + // do task :-) t->fun(t->data); free(t); -- cgit v1.2.3