Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions include/chevron/process/memory/memory_core.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

// Copyright (C) 2026 by Jamon T. Bailey and InfinSys, LLC. All rights reserved.
// Released under the terms of the GNU Affero General Public License version 3

// [ISJTB-CXX-XL20260108-000003]

/*!
* @file memory_core.hpp
*
* @brief
* // TODO: INCOMPLETE DOC STRING!!!
*
* @author
* Jamon T. Bailey
*
* @date 04-01-2026
*/

#ifndef CHEVRON_LIB_PROCESS_MEMORY_AUTHORITY_H_
#define CHEVRON_LIB_PROCESS_MEMORY_AUTHORITY_H_

namespace chevron::process
{

/*!
* @brief
* Process memory authority.
*
* @details
* N/a
*/
class MemoryCore { /* TODO : INCOMPLETE IMPLEMENTATION!!! */ };

}

#endif // CHEVRON_LIB_PROCESS_MEMORY_AUTHORITY_H_
3 changes: 3 additions & 0 deletions src/process/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
target_sources(
${CHEVRON_MAIN_BINARY_NAME}

PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}/memory/memory_core.cpp"

PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}/thread/thread_engine.cpp"
)
21 changes: 21 additions & 0 deletions src/process/memory/memory_core.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

// Copyright (C) 2026 by Jamon T. Bailey and InfinSys, LLC. All rights reserved.
// Released under the terms of the GNU Affero General Public License version 3

// [ISJTB-CXX-XL20260108-000003]

/*!
* @file memory_core.cpp
*
* @brief
* // TODO: INCOMPLETE DOC STRING!!!
*
* @author
* Jamon T. Bailey
*
* @date 04-01-2026
*/

#include "chevron/process/memory/memory_core.hpp"

// TODO : INCOMPLETE IMPLEMENTATION!!!
1 change: 1 addition & 0 deletions tests/cli/dev_exe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include "chevron/function.hpp"
#include "chevron/process/thread/thread_engine.hpp"
#include "chevron/process/memory/memory_core.hpp"

int main(int argc, char* argv[])
{
Expand Down