Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3801

Show
Ignore:
Timestamp:
07/25/08 15:41:16 (4 months ago)
Author:
sean
Message:

Documented Thread.isDaemon(). This closes #1197

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/common/tango/core/Thread.d

    r3800 r3801  
    601601 
    602602    /** 
    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. 
    604608     * 
    605609     * Returns: 
     
    616620 
    617621    /** 
    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. 
    619627     * 
    620628     * Params: