diff options
author | Richard Braun <rbraun@sceen.net> | 2017-04-29 21:52:54 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-04-29 21:52:54 +0200 |
commit | d78a948f0a1d8b7b3385944c736d7cffd8ca67a7 (patch) | |
tree | 73f5b4b37b73311d768670f1838688dd4505d47a /test/test_llsync_defer.c | |
parent | 6ba94ce79c8477758dd440d3563ffd4dd88883df (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.c | 8 |
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++; |