Skip to content

Commit

Permalink
Setting environment
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaver committed Jul 13, 2022
1 parent aaafcce commit 53c054f
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
31 changes: 31 additions & 0 deletions memory/inc/module/algorithms.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* @file algorithms.h
* @author Francisco Maver (fmaver@frba.utn.edu.ar)
* @brief
* @version 0.1
* @date 2022-07-13
*
* @copyright Copyright (c) 2022
*
*/

#pragma once

#include <commons/string.h>
#include <commons/collections/list.h>

#include "memory_dispatcher.h"
#include "accion.h"
#include "instruction.h"
#include "thread_manager.h"
#include "server.h"
#include "smartlist.h"
#include "accion.h"
#include "log.h"
#include "lib.h"
#include "page_table.h"

uint32_t seleccionClock(page_table_lvl_1_t* tabla);


uint32_t seleccionClockM(page_table_lvl_1_t* tabla);
25 changes: 25 additions & 0 deletions memory/src/module/algorithms.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file algorithms.c
* @author Francisco Maver (fmaver@frba.utn.edu.ar)
* @brief
* @version 0.1
* @date 2022-07-13
*
* @copyright Copyright (c) 2022
*
*/

#include <commons/string.h>
#include <commons/collections/list.h>

#include "memory_dispatcher.h"
#include "accion.h"
#include "instruction.h"
#include "thread_manager.h"
#include "server.h"
#include "smartlist.h"
#include "accion.h"
#include "log.h"
#include "lib.h"


0 comments on commit 53c054f

Please sign in to comment.