src/share/vm/utilities/bitMap.hpp

changeset 2968
842b840e67db
parent 2314
f95d63e2154a
child 3691
2a0172480595
     1.1 --- a/src/share/vm/utilities/bitMap.hpp	Mon Jun 13 13:48:18 2011 +0200
     1.2 +++ b/src/share/vm/utilities/bitMap.hpp	Tue Jun 14 10:33:43 2011 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -161,11 +161,11 @@
    1.11  
    1.12    // Set or clear the specified bit.
    1.13    inline void set_bit(idx_t bit);
    1.14 -  void clear_bit(idx_t bit);
    1.15 +  inline void clear_bit(idx_t bit);
    1.16  
    1.17    // Atomically set or clear the specified bit.
    1.18 -  bool par_set_bit(idx_t bit);
    1.19 -  bool par_clear_bit(idx_t bit);
    1.20 +  inline bool par_set_bit(idx_t bit);
    1.21 +  inline bool par_clear_bit(idx_t bit);
    1.22  
    1.23    // Put the given value at the given offset. The parallel version
    1.24    // will CAS the value into the bitmap and is quite a bit slower.

mercurial