10
README.md
10
README.md
@@ -38,6 +38,16 @@ your changes to the official codebase.
|
||||
$ git clone --recursive https://<user>@git.rhrk.uni-kl.de/<user>/dram.vp.system.git
|
||||
```
|
||||
|
||||
After a pull request being accepted and merged into the official repository
|
||||
you should get your fork updated.
|
||||
|
||||
``` bash
|
||||
$ git fetch upstream
|
||||
$ git checkout master
|
||||
$ git merge upstream/master
|
||||
$ git push origin HEAD
|
||||
```
|
||||
|
||||
After cloning go to the project directory.
|
||||
|
||||
``` bash
|
||||
|
||||
@@ -75,6 +75,8 @@ gp* MemoryManager::allocate()
|
||||
|
||||
void MemoryManager::free(gp* payload)
|
||||
{
|
||||
unsigned char *dptr = payload->get_data_ptr();
|
||||
delete[] dptr;
|
||||
payload->reset(); //clears all extensions
|
||||
freePayloads.push_back(payload);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
/*
|
||||
* Copyright (c) 2015, University of Kaiserslautern
|
||||
* All rights reserved.
|
||||
*
|
||||
|
||||
@@ -36,13 +36,11 @@
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include "SimulationManager.h"
|
||||
#include "../controller/core/configuration/Configuration.h"
|
||||
|
||||
#include <systemc.h>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "SimulationManager.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user