Changeset 69c376b5 in mainline
- Timestamp:
- 2024-05-29T18:27:11Z (8 months ago)
- Branches:
- master
- Children:
- 645d3832
- Parents:
- c576800
- Location:
- uspace/lib
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/meson.build
rc576800 r69c376b5 1 1 # 2 # Copyright (c) 202 3Jiri Svoboda2 # Copyright (c) 2024 Jiri Svoboda 3 3 # Copyright (c) 2005 Martin Decky 4 4 # Copyright (c) 2007 Jakub Jermar … … 83 83 'generic/config.c', 84 84 'generic/context.c', 85 'generic/dbgcon.c', 85 86 'generic/device/clock_dev.c', 86 87 'generic/device/hw_res.c', -
uspace/lib/console/src/console.c
rc576800 r69c376b5 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * Copyright (c) 2006 Josef Cejka 4 4 * Copyright (c) 2006 Jakub Vana … … 36 36 37 37 #include <as.h> 38 #include <dbgcon.h> 38 39 #include <libc.h> 39 40 #include <async.h> … … 77 78 bool console_kcon(void) 78 79 { 79 return __SYSCALL0(SYS_DEBUG_CONSOLE);80 return dbgcon_enable(); 80 81 } 81 82
Note:
See TracChangeset
for help on using the changeset viewer.