Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
61d8ad7a
Commit
61d8ad7a
authored
Jan 07, 2012
by
Gabor Greif
💬
Committed by
Simon Marlow
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use (GHC) idiomatic types
parent
11141d5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
includes/rts/storage/GC.h
includes/rts/storage/GC.h
+4
-4
No files found.
includes/rts/storage/GC.h
View file @
61d8ad7a
...
...
@@ -67,7 +67,7 @@ typedef struct nursery_ {
}
nursery
;
typedef
struct
generation_
{
unsigned
int
no
;
// generation number
nat
no
;
// generation number
bdescr
*
blocks
;
// blocks in this gen
memcount
n_blocks
;
// number of blocks
...
...
@@ -85,9 +85,9 @@ typedef struct generation_ {
struct
generation_
*
to
;
// destination gen for live objects
// stats information
unsigned
i
nt
collections
;
unsigned
i
nt
par_collections
;
unsigned
i
nt
failed_promotions
;
n
a
t
collections
;
n
a
t
par_collections
;
n
a
t
failed_promotions
;
// ------------------------------------
// Fields below are used during GC only
...
...
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