[llvm-commits] [vmkit] r48958 - /vmkit/trunk/lib/Mvm/GCMmap2/gcthread.h
Owen Anderson
resistor at mac.com
Sun Mar 30 10:17:51 PDT 2008
Author: resistor
Date: Sun Mar 30 12:17:51 2008
New Revision: 48958
URL: http://llvm.org/viewvc/llvm-project?rev=48958&view=rev
Log:
More de-frenchification.
Modified:
vmkit/trunk/lib/Mvm/GCMmap2/gcthread.h
Modified: vmkit/trunk/lib/Mvm/GCMmap2/gcthread.h
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/Mvm/GCMmap2/gcthread.h?rev=48958&r1=48957&r2=48958&view=diff
==============================================================================
--- vmkit/trunk/lib/Mvm/GCMmap2/gcthread.h (original)
+++ vmkit/trunk/lib/Mvm/GCMmap2/gcthread.h Sun Mar 30 12:17:51 2008
@@ -81,13 +81,13 @@
class GCThread {
Key<GCThreadCollector> _loc;
GCThreadCollector base;
- GCLockRecovery _globalLock; /* lock global pour gcmalloc */
- LockNormal _stackLock; /* lock de la pile pour la syncro */
- Cond _stackCond; /* condition pour déverouiller les autres taches (write protect) */
- Cond _collectionCond;/* condition pour débloquer le collecteur */
- unsigned int _nb_threads; /* nombre de threads actifs */
- unsigned int _nb_collected; /* nombre de threads ayant collecté */
- int collector_tid; /* il ne faut pas le synchroniser celui là */
+ GCLockRecovery _globalLock; /* global lock for gcmalloc */
+ LockNormal _stackLock; /* stack lock for synchronization */
+ Cond _stackCond; /* condition for unlocking other tasks (write protect) */
+ Cond _collectionCond;/* condition for unblocking the collecter */
+ unsigned int _nb_threads; /* number of active threads */
+ unsigned int _nb_collected; /* number of threads collected */
+ int collector_tid; /* don't synchonize this one */
public:
More information about the llvm-commits
mailing list