Changeset 11058
- Timestamp:
- 03/10/10 20:22:11 (2 years ago)
- Location:
- trunk/Padre
- Files:
-
- 2 edited
-
Changes (modified) (1 diff)
-
lib/Padre/Startup.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/Changes
r11042 r11058 6 6 (SEWI) 7 7 - Added a small survey for new Padre installation (SEWI) 8 - Resolved the clash between threads and SQLite by temporarily 9 disconnecting from SQLite during a thread spawn (ADAMK) 10 - Move the slave driver spawn into Padre::Startup, so that 11 we get much much smaller thread spawn memory penalty from the 12 interpreter copy (ADAMK) 8 13 9 14 0.58 2010.03.08 -
trunk/Padre/lib/Padre/Startup.pm
r11008 r11058 60 60 main_singleinstance_port => Padre::Constant::DEFAULT_SINGLEINSTANCE_PORT, 61 61 startup_splash => 1, 62 threads => 1, 62 63 ); 63 64 … … 161 162 } 162 163 164 # If we are going to use threading, spawn off the slave 165 # driver as early as we possibly can so we reduce the amount of 166 # wasted memory copying to a minimum. 167 if ( $setting{threads} ) { 168 require Padre::SlaveDriver; 169 Padre::SlaveDriver->new; 170 } 171 163 172 return 1; 164 173 }
Note: See TracChangeset
for help on using the changeset viewer.
