Changeset 8f04992 in mainline


Ignore:
Timestamp:
2023-11-30T17:19:00Z (5 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, topic/simplify-dev-export
Children:
cad7b7e
Parents:
0e2eee1
Message:

Move corecfg from libc to a separate library

Location:
uspace
Files:
2 added
4 edited
3 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/corecfg/meson.build

    r0e2eee1 r8f04992  
    11#
    2 # Copyright (c) 2013 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# All rights reserved.
    44#
     
    2727#
    2828
     29deps = [ 'corecfg' ]
    2930src = files('corecfg.c')
  • uspace/lib/c/meson.build

    r0e2eee1 r8f04992  
    8383        'generic/config.c',
    8484        'generic/context.c',
    85         'generic/corecfg.c',
    8685        'generic/device/clock_dev.c',
    8786        'generic/device/hw_res.c',
  • uspace/lib/corecfg/include/corecfg.h

    r0e2eee1 r8f04992  
    11/*
    2  * Copyright (c) 2013 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup libcorecfg
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef _LIBC_CORECFG_H_
    36 #define _LIBC_CORECFG_H_
     35#ifndef _LIBCORECFG_CORECFG_H_
     36#define _LIBCORECFG_CORECFG_H_
    3737
    3838#include <errno.h>
  • uspace/lib/corecfg/include/ipc/corecfg.h

    r0e2eee1 r8f04992  
    11/*
    2  * Copyright (c) 2013 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup libcipc
     29/** @addtogroup libcorecfg
    3030 * @{
    3131 */
    3232
    33 #ifndef _LIBC_IPC_CORECFG_H_
    34 #define _LIBC_IPC_CORECFG_H_
     33#ifndef _LIBCORECFG_IPC_CORECFG_H_
     34#define _LIBCORECFG_IPC_CORECFG_H_
    3535
    3636#include <ipc/common.h>
  • uspace/lib/meson.build

    r0e2eee1 r8f04992  
    5959        'codepage',
    6060        'compress',
     61        'corecfg',
    6162        'cpp',
    6263        'crypto',
  • uspace/srv/taskmon/meson.build

    r0e2eee1 r8f04992  
    11#
    2 # Copyright (c) 2010 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# All rights reserved.
    44#
     
    2727#
    2828
     29deps = [ 'corecfg' ]
    2930src = files('taskmon.c')
Note: See TracChangeset for help on using the changeset viewer.