Changeset 3801
- Timestamp:
- 07/25/08 15:41:16 (4 months ago)
- Files:
-
- trunk/lib/common/tango/core/Thread.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/common/tango/core/Thread.d
r3800 r3801 601 601 602 602 /** 603 * Gets the daemon status for this thread. 603 * Gets the daemon status for this thread. While the runtime will wait for 604 * all normal threads to complete before tearing down the process, daemon 605 * threads are effectively ignored and thus will not prevent the process 606 * from terminating. In effect, daemon threads will be terminated 607 * automatically by the OS when the process exits. 604 608 * 605 609 * Returns: … … 616 620 617 621 /** 618 * Sets the daemon status for this thread. 622 * Sets the daemon status for this thread. While the runtime will wait for 623 * all normal threads to complete before tearing down the process, daemon 624 * threads are effectively ignored and thus will not prevent the process 625 * from terminating. In effect, daemon threads will be terminated 626 * automatically by the OS when the process exits. 619 627 * 620 628 * Params:












