Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
a92f0373
Commit
a92f0373
authored
Apr 11, 2005
by
simonmar
Browse files
[project @ 2005-04-11 14:43:06 by simonmar]
Set the default minAllocAreaSize to 512k. Caches are bigger these days.
parent
5a10dc1b
Changes
1
Show whitespace changes
Inline
Side-by-side
ghc/rts/RtsFlags.c
View file @
a92f0373
...
@@ -152,7 +152,7 @@ void initRtsFlagsDefaults(void)
...
@@ -152,7 +152,7 @@ void initRtsFlagsDefaults(void)
RtsFlags
.
GcFlags
.
maxStkSize
=
(
8
*
1024
*
1024
)
/
sizeof
(
W_
);
RtsFlags
.
GcFlags
.
maxStkSize
=
(
8
*
1024
*
1024
)
/
sizeof
(
W_
);
RtsFlags
.
GcFlags
.
initialStkSize
=
1024
/
sizeof
(
W_
);
RtsFlags
.
GcFlags
.
initialStkSize
=
1024
/
sizeof
(
W_
);
RtsFlags
.
GcFlags
.
minAllocAreaSize
=
(
256
*
1024
)
/
BLOCK_SIZE
;
RtsFlags
.
GcFlags
.
minAllocAreaSize
=
(
512
*
1024
)
/
BLOCK_SIZE
;
RtsFlags
.
GcFlags
.
minOldGenSize
=
(
1024
*
1024
)
/
BLOCK_SIZE
;
RtsFlags
.
GcFlags
.
minOldGenSize
=
(
1024
*
1024
)
/
BLOCK_SIZE
;
RtsFlags
.
GcFlags
.
maxHeapSize
=
0
;
/* off by default */
RtsFlags
.
GcFlags
.
maxHeapSize
=
0
;
/* off by default */
RtsFlags
.
GcFlags
.
heapSizeSuggestion
=
0
;
/* none */
RtsFlags
.
GcFlags
.
heapSizeSuggestion
=
0
;
/* none */
...
...
Write
Preview
Markdown
is supported
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