src/os/bsd/vm/os_bsd.hpp

changeset 3900
d2a62e0f25eb
parent 3156
f08d439fab8c
child 4017
fa9253dcd4df
     1.1 --- a/src/os/bsd/vm/os_bsd.hpp	Wed Jun 27 15:23:36 2012 +0200
     1.2 +++ b/src/os/bsd/vm/os_bsd.hpp	Thu Jun 28 17:03:16 2012 -0400
     1.3 @@ -312,7 +312,7 @@
     1.4  };
     1.5  
     1.6  
     1.7 -class PlatformEvent : public CHeapObj {
     1.8 +class PlatformEvent : public CHeapObj<mtInternal> {
     1.9    private:
    1.10      double CachePad [4] ;   // increase odds that _mutex is sole occupant of cache line
    1.11      volatile int _Event ;
    1.12 @@ -347,7 +347,7 @@
    1.13      void SetAssociation (Thread * a) { _Assoc = a ; }
    1.14  } ;
    1.15  
    1.16 -class PlatformParker : public CHeapObj {
    1.17 +class PlatformParker : public CHeapObj<mtInternal> {
    1.18    protected:
    1.19      pthread_mutex_t _mutex [1] ;
    1.20      pthread_cond_t  _cond  [1] ;

mercurial