Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
33f4c84c
Commit
33f4c84c
authored
Mar 30, 2009
by
Simon Marlow
Browse files
go back to using $CPUS + 1 for the number of threads to use
parent
31fb9591
Changes
1
Hide whitespace changes
Inline
Side-by-side
validate
View file @
33f4c84c
...
...
@@ -48,7 +48,7 @@ done
if
[
"
$CPUS
"
=
""
]
;
then
threads
=
2
else
threads
=
$((
(
$CPUS
+
1
)
*
2
)
)
# `expr $CPUS + 1`
threads
=
$((
$CPUS
+
1
))
# `expr $CPUS + 1`
fi
if
[
$testsuite_only
-eq
0
]
;
then
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment