Changeset 8f04992 in mainline
- Timestamp:
- 2023-11-30T17:19:00Z (12 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- cad7b7e
- Parents:
- 0e2eee1
- Location:
- uspace
- Files:
-
- 2 added
- 4 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/corecfg/meson.build
r0e2eee1 r8f04992 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 deps = [ 'corecfg' ] 29 30 src = files('corecfg.c') -
uspace/lib/c/meson.build
r0e2eee1 r8f04992 83 83 'generic/config.c', 84 84 'generic/context.c', 85 'generic/corecfg.c',86 85 'generic/device/clock_dev.c', 87 86 'generic/device/hw_res.c', -
uspace/lib/corecfg/include/corecfg.h
r0e2eee1 r8f04992 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 libcorecfg 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _CORECFG_H_36 #define _LIBC _CORECFG_H_35 #ifndef _LIBCORECFG_CORECFG_H_ 36 #define _LIBCORECFG_CORECFG_H_ 37 37 38 38 #include <errno.h> -
uspace/lib/corecfg/include/ipc/corecfg.h
r0e2eee1 r8f04992 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 ipc29 /** @addtogroup libcorecfg 30 30 * @{ 31 31 */ 32 32 33 #ifndef _LIBC _IPC_CORECFG_H_34 #define _LIBC _IPC_CORECFG_H_33 #ifndef _LIBCORECFG_IPC_CORECFG_H_ 34 #define _LIBCORECFG_IPC_CORECFG_H_ 35 35 36 36 #include <ipc/common.h> -
uspace/lib/meson.build
r0e2eee1 r8f04992 59 59 'codepage', 60 60 'compress', 61 'corecfg', 61 62 'cpp', 62 63 'crypto', -
uspace/srv/taskmon/meson.build
r0e2eee1 r8f04992 1 1 # 2 # Copyright (c) 20 10Jiri Svoboda2 # Copyright (c) 2023 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 deps = [ 'corecfg' ] 29 30 src = files('taskmon.c')
Note:
See TracChangeset
for help on using the changeset viewer.