Code Monkey home page Code Monkey logo

3220-p3a's Introduction

parray_new:
  This function allocates a paranoid array with guard pages surrounding each block of memory.
  Each block of memory will be a multiple of 4096 in size, including the guard pages.
  The memory is allocated with posix_memalign with enough space for count + count + 2 pages,
  since there will be a guard page before index 0 and a guard page after the last index,
  then the allocated memory is looped through and guard pages are created with mprotect for every
  other page starting at the first page.

parray_entry:
  This function returns a pointer to the specified index.  To calculate the offset
  we need to skip over (pgsize * (2 + (2*index)) pages.  This will get us to the end of the correct page,
  then subtract size to get the start of the entry.

To get the libparray.so file to work properly I had to add the current working directory to my PATH, the line I used is in the makefile but it needs to be ran on the command line since the Makefile is a separate process from the shell.

3220-p3a's People

Contributors

bradymesser2 avatar bradymesser avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.