Questions tagged [heap-randomization]
7 questions
17
votes
3 answers
How to disable address space randomization for a binary on Linux?
I'm working on a runtime system for parallel programs that can take advantage of a common address space layout across multiple processes, potentially spread over several (thousand) nodes. Many times, software built for this environment is run on…

Phil Miller
- 36,389
- 13
- 67
- 90
1
vote
1 answer
CPU Simulation, Randomize the burst, waiting and priority
I made a code here which is a user interactive for the CPU simulation, here the user will input the number of burst time, waiting time and priority. I would like to remove the that feature and replace it into randomization, it will randomize the…

pocari
- 11
- 1
- 2
0
votes
1 answer
Qualtrics: Advanced Randomization now showing up all the questions
I have a question block with one multiple choice question in it.
I want to randomly evenly display one choice per participant.
However when I click advanced randomization, only the title of the whole multiplie choice question shows up,
and all the…

DM S
- 1
0
votes
1 answer
How to randomise treatments in five blocks using Rstudio without a treatment being repeated?
In the orchard experiment, there are 5 treatments and 5 blocks. To allow for analysis of the effects of the treatments on tree and fruit growth the treatments are the same on either side of the middle tree row. How can I randomise the treatments in…

MarioS
- 15
- 5
0
votes
0 answers
Weird interaction in data structure code for randomized Binary Search Tree
in my code I have created a TreeNode class where each node has a int N field which is the number of subtrees, this is the code for the deletion of a TreeNode in a randomized BTS tree
void remove(int id)
{
if(isID(id)) {
…

J . Doe
- 1
- 3
0
votes
2 answers
Heap randomization in Windows
Windows 7 has Heap randomization and Stack randomization features. How could I manage it? How they are affects performance of my application? Where I could find more information on how it works?
I'm using Visual Studio 2008 for developing C++…

Kirill V. Lyadvinsky
- 97,037
- 24
- 136
- 212
-2
votes
1 answer
can someone explain to me this code? why it has -1 at the end?
this code takes input to define a range, then shows 6 numbers when the button is clicked. i dont understand why there is a -1 at the var digits = digits - 1. can you explain it to me? i'm just new here, i hope everybody understands
function…

james.vow
- 7
- 1