Changeset 512
- Timestamp:
- 01/15/11 20:26:36 (14 years ago)
- Files:
-
- trunk/src/core/thread.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/core/thread.d
r511 r512 423 423 try 424 424 { 425 425 rt_moduleTlsCtor(); 426 426 try 427 427 { 428 428 obj.run(); 429 429 } 430 430 catch( Throwable t ) 431 431 { 432 432 append( t ); 433 }434 catch( Object o )435 {436 // TODO: Remove this once the compiler prevents it.437 433 } 438 434 rt_moduleTlsDtor(); 439 435 } 440 436 catch( Throwable t ) 441 437 { 442 438 append( t ); 443 439 } 444 440 445 441 // NOTE: Normal cleanup is handled by scope(exit). 446 442
