Ignore:
Timestamp:
11/14/2008 12:17:53 AM (4 years ago)
Author:
cjax
Message:

Additional entropy source management

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eraser6/Manager/Manager.cs

    r348 r549  
    3737            Settings = settings; 
    3838 
     39 
     40            EntropySourceManager = new EntropySourceManager(); 
    3941            PRNGManager = new PRNGManager(); 
    40             LanguageManager = new LanguageManager(); 
    4142            ErasureMethodManager = new ErasureMethodManager(); 
    4243            Host = new Plugin.DefaultHost(); 
     
    4546        public void Dispose() 
    4647        { 
    47             PRNGManager.entropyThread.Abort(); 
     48            EntropySourceManager.Poller.Abort(); 
    4849            Host.Dispose(); 
    4950            Settings.Save(); 
     
    5556        /// </summary> 
    5657        public static ManagerLibrary Instance = null; 
     58 
     59        /// <summary> 
     60        /// The global instance of the EntropySource Manager 
     61        /// </summary> 
     62        internal EntropySourceManager EntropySourceManager; 
    5763 
    5864        /// <summary> 
Note: See TracChangeset for help on using the changeset viewer.