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_sref_weakref.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_sref_weakref.c')
-rw-r--r-- | test/test_sref_weakref.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_sref_weakref.c b/test/test_sref_weakref.c index e28851f7..65918a1f 100644 --- a/test/test_sref_weakref.c +++ b/test/test_sref_weakref.c @@ -71,7 +71,7 @@ test_run(void *arg) for (j = 0; j < 0x20000000; j++); - printk("run: iterations: %lu\n", i); + printf("run: iterations: %lu\n", i); syscnt_info("sref_epoch"); syscnt_info("sref_dirty_zero"); syscnt_info("sref_revive"); @@ -95,7 +95,7 @@ test_ref(void *arg) } if ((i % 100000000) == 0) { - printk("ref: iterations: %lu\n", i); + printf("ref: iterations: %lu\n", i); } } } |