src/share/vm/gc_implementation/g1/g1_globals.hpp

changeset 1318
27f6a9b9c311
parent 1280
df6caf649ff7
child 1319
83b687ce3090
     1.1 --- a/src/share/vm/gc_implementation/g1/g1_globals.hpp	Fri Jul 24 12:49:31 2009 -0700
     1.2 +++ b/src/share/vm/gc_implementation/g1/g1_globals.hpp	Wed Jul 29 11:01:26 2009 -0400
     1.3 @@ -167,9 +167,16 @@
     1.4    develop(bool, G1DisablePostBarrier, false,                                \
     1.5            "Disable generation of post-barrier (i.e., RS barrier)   ")       \
     1.6                                                                              \
     1.7 -  product(intx, G1DirtyCardQueueMax, 30,                                    \
     1.8 -          "Maximum number of completed RS buffers before mutator threads "  \
     1.9 -          "start processing them.")                                         \
    1.10 +  product(intx, G1UpdateBufferSize, 256,                                    \
    1.11 +          "Size of an update buffer")                                       \
    1.12 +                                                                            \
    1.13 +  product(intx, G1UpdateBufferQueueProcessingThreshold, 5,                  \
    1.14 +          "Number of enqueued update buffers that will "                    \
    1.15 +          "trigger concurrent processing")                                  \
    1.16 +                                                                            \
    1.17 +  product(intx, G1UpdateBufferQueueMaxLength, 30,                           \
    1.18 +          "Maximum number of enqueued update buffers before mutator "       \
    1.19 +          "threads start processing new ones instead of enqueueing them")   \
    1.20                                                                              \
    1.21    develop(intx, G1ConcRSLogCacheSize, 10,                                   \
    1.22            "Log base 2 of the length of conc RS hot-card cache.")            \

mercurial