Review Note

Last Update: 04/26/2023 03:19 PM

Current Deck: Software Security

Published

Currently Published Content


Front
Give me an example of a structure of a chunk in the context of memory organization? Code example will do
Back
struct chunk {
    int prev_size;
    int size;
    struct chunk *fd;
    struct chunk *bk;
}

No published tags.

Pending Suggestions


No pending suggestions for this note.