summaryrefslogtreecommitdiff
path: root/test/test_llsync_defer.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-04-29 21:52:54 +0200
committerRichard Braun <rbraun@sceen.net>2017-04-29 21:52:54 +0200
commitd78a948f0a1d8b7b3385944c736d7cffd8ca67a7 (patch)
tree73f5b4b37b73311d768670f1838688dd4505d47a /test/test_llsync_defer.c
parent6ba94ce79c8477758dd440d3563ffd4dd88883df (diff)
kern/printk: rename to printf
The printk functions are close enough to the printf ones to bear the same names.
Diffstat (limited to 'test/test_llsync_defer.c')
-rw-r--r--test/test_llsync_defer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_llsync_defer.c b/test/test_llsync_defer.c
index 929ece64..9bce0162 100644
--- a/test/test_llsync_defer.c
+++ b/test/test_llsync_defer.c
@@ -39,7 +39,7 @@
#include <kern/mutex.h>
#include <kern/panic.h>
#include <kern/param.h>
-#include <kern/printk.h>
+#include <kern/printf.h>
#include <kern/thread.h>
#include <kern/work.h>
#include <test/test.h>
@@ -91,7 +91,7 @@ test_alloc(void *arg)
condition_signal(&test_condition);
if ((i % TEST_LOOPS_PER_PRINT) == 0) {
- printk("alloc ");
+ printf("alloc ");
}
i++;
@@ -140,7 +140,7 @@ test_free(void *arg)
condition_signal(&test_condition);
if ((i % TEST_LOOPS_PER_PRINT) == 0) {
- printk("free ");
+ printf("free ");
}
i++;
@@ -173,7 +173,7 @@ test_read(void *arg)
}
if ((i % TEST_LOOPS_PER_PRINT) == 0) {
- printk("read ");
+ printf("read ");
}
i++;