bulkmail_increment_threadcount

one of the documented procedures in this installation of the ACS
Usage:
bulkmail_increment_threadcount
What it does:
Increment the number of in-use threads. This is actually a different variable than the completed threads variable, so that we won't block.
Defined in: /web/philip/tcl/bulkmail-utils.tcl

Source code:


    
    ns_share bulkmail_threads_spawned_mutex
    ns_share bulkmail_threads_spawned

    ns_mutex lock $bulkmail_threads_spawned_mutex
    catch {
	incr bulkmail_threads_spawned
    }
    ns_mutex unlock $bulkmail_threads_spawned_mutex


philg@mit.edu