aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/core/worker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/core/worker.c')
-rw-r--r--src/kernel/core/worker.c3
1 files changed, 3 insertions, 0 deletions
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 <btree.h>
#include <mutex.h>
#include <malloc.h>
+#include <prng.h>
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);