Changeset a635535 in mainline for uspace/lib
- Timestamp:
- 2023-11-30T20:29:05Z (23 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 1be9ee0
- Parents:
- cad7b7e
- Location:
- uspace/lib
- Files:
-
- 11 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/chargrid.c
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ -
uspace/lib/c/include/io/charfield.h
rcad7b7e ra635535 28 28 */ 29 29 30 /** @addtogroup libc 30 /** @addtogroup libconsole 31 31 * @{ 32 32 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IO_CHARFIELD_H_37 #define _LIBC _IO_CHARFIELD_H_36 #ifndef _LIBCONSOLE_IO_CHARFIELD_H_ 37 #define _LIBCONSOLE_IO_CHARFIELD_H_ 38 38 39 39 #include <stdbool.h> -
uspace/lib/c/include/io/chargrid.h
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IO_CHARGRID_H_37 #define _LIBC _IO_CHARGRID_H_36 #ifndef _LIBCONSOLE_IO_CHARGRID_H_ 37 #define _LIBCONSOLE_IO_CHARGRID_H_ 38 38 39 39 #include <io/charfield.h> -
uspace/lib/c/include/io/color.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 08Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_COLOR_H_36 #define _LIBC _IO_COLOR_H_35 #ifndef _LIBCONSOLE_IO_COLOR_H_ 36 #define _LIBCONSOLE_IO_COLOR_H_ 37 37 38 38 typedef enum { -
uspace/lib/c/include/io/concaps.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 12Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc ipc29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_CONCAPS_H_36 #define _LIBC _IO_CONCAPS_H_35 #ifndef _LIBCONSOLE_IO_CONCAPS_H_ 36 #define _LIBCONSOLE_IO_CONCAPS_H_ 37 37 38 38 typedef enum { -
uspace/lib/c/include/io/output.h
rcad7b7e ra635535 38 38 #include <ipc/output.h> 39 39 #include <io/chargrid.h> 40 #include <io/console.h> 40 #include <io/concaps.h> 41 #include <io/style.h> 41 42 42 43 extern errno_t output_yield(async_sess_t *); -
uspace/lib/c/meson.build
rcad7b7e ra635535 115 115 'generic/io/vprintf.c', 116 116 'generic/io/vsnprintf.c', 117 'generic/io/con_srv.c',118 'generic/io/console.c',119 117 'generic/io/table.c', 120 118 'generic/irq.c', -
uspace/lib/clui/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'clipboard' ]29 deps = [ 'clipboard', 'console' ] 30 30 src = files( 31 31 'nchoice.c', -
uspace/lib/congfx/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'gfx' ]29 deps = [ 'gfx', 'console' ] 30 30 src = files( 31 31 'src/console.c', -
uspace/lib/console/include/io/con_srv.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _CON_SRV_H_36 #define _LIBC _CON_SRV_H_35 #ifndef _LIBCONSOLE_IO_CON_SRV_H_ 36 #define _LIBCONSOLE_IO_CON_SRV_H_ 37 37 38 38 #include <adt/list.h> -
uspace/lib/console/include/io/cons_event.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 13 Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_CONS_EVENT_H_36 #define _LIBC _IO_CONS_EVENT_H_35 #ifndef _LIBCONSOLE_IO_CONS_EVENT_H_ 36 #define _LIBCONSOLE_IO_CONS_EVENT_H_ 37 37 38 38 #include <adt/list.h> -
uspace/lib/console/include/io/console.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_CONSOLE_H_36 #define _LIBC _IO_CONSOLE_H_35 #ifndef _LIBCONSOLE_IO_CONSOLE_H_ 36 #define _LIBCONSOLE_IO_CONSOLE_H_ 37 37 38 38 #include <time.h> -
uspace/lib/console/include/ipc/console.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * Copyright (c) 2006 Josef Cejka 4 4 * All rights reserved. … … 28 28 */ 29 29 30 /** @addtogroup libc ipc30 /** @addtogroup libconsole 31 31 * @{ 32 32 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IPC_CONSOLE_H_37 #define _LIBC _IPC_CONSOLE_H_36 #ifndef _LIBCONSOLE_IPC_CONSOLE_H_ 37 #define _LIBCONSOLE_IPC_CONSOLE_H_ 38 38 39 39 #include <ipc/vfs.h> -
uspace/lib/console/src/con_srv.c
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ -
uspace/lib/console/src/console.c
rcad7b7e ra635535 29 29 */ 30 30 31 /** @addtogroup libc 31 /** @addtogroup libconsole 32 32 * @{ 33 33 */ -
uspace/lib/fmtutil/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'console' ] 29 30 src = files('fmtutil.c') -
uspace/lib/meson.build
rcad7b7e ra635535 53 53 'inet', 54 54 55 'console', 55 56 'device', 56 57
Note:
See TracChangeset
for help on using the changeset viewer.