Skip to content

Commit

Permalink
We can now extract mmap on 8 cpus
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
cyberium authored and Fabi committed Jan 3, 2017
1 parent df1562e commit f4eb446
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contrib/extractor_scripts/ExtractResources.sh
Expand Up @@ -87,15 +87,15 @@ fi
## MMap Extraction specific
if [ "$USE_MMAPS" = "1" ]
then
## Obtain number ob processes
echo "How many CPUs should be used for extracting mmaps? (1-4)"
## Obtain number of processes
echo "How many CPUs should be used for extracting mmaps? (1, 2, 4, 8)"
read line
echo
if [ "$line" -ge "1" -a "$line" -le "4" ]
if [[ ($line == 1) || ($line == 2) || ($line == 4) || ($line == 8) ]]
then
NUM_CPU=$line
else
echo "Only number between 1 and 4 supported!"
echo "Only numbers 1,2,4 and 8 are supported!"
exit 1
fi
## Extract MMaps delayed?
Expand Down

0 comments on commit f4eb446

Please sign in to comment.