MercurialSourceCodeManager.st
changeset 4050 7df288be76d3
parent 4042 76ff387bc6e9
child 4054 e1d270d3c382
equal deleted inserted replaced
4049:7cc69ea18451 4050:7df288be76d3
    63 
    63 
    64 forgetDisabledModules
    64 forgetDisabledModules
    65     DisabledModules := nil.
    65     DisabledModules := nil.
    66 !
    66 !
    67 
    67 
       
    68 hgCommandSemaphore
       
    69     HGCommandSemaphore isNil ifTrue:[
       
    70         HGCommandSemaphore := (Semaphore new:10) name:'Concurrent Mercurial Commands'.    "/ at most 10 hg activities concurrently
       
    71     ].
       
    72     ^ HGCommandSemaphore
       
    73 !
       
    74 
    68 initialize
    75 initialize
    69     | s |
    76     | s |
    70 
    77 
    71     HGCommandSemaphore := (Semaphore new:10) name:'Concurrent Mercurial Commands'.    "/ at most 10 hg activities concurrently
    78     "/ HGCommandSemaphore := (Semaphore new:10) name:'Concurrent Mercurial Commands'.    "/ at most 10 hg activities concurrently
    72     HGCommitOptions := ''.
    79     HGCommitOptions := ''.
    73     HGUpdateOptions := ''.
    80     HGUpdateOptions := ''.
    74     DisabledModules := nil.
    81     DisabledModules := nil.
    75     PerModuleRepositories isNil ifTrue:[
    82     PerModuleRepositories isNil ifTrue:[
    76         PerModuleRepositories := Dictionary new.
    83         PerModuleRepositories := Dictionary new.