bulkmail_register_thread

one of the documented procedures in this installation of the ACS
Usage:
bulkmail_register_thread   thread_id
What it does:
Register a thread in the thread_queue
Defined in: /web/philip/tcl/bulkmail-utils.tcl

Source code:


    ns_share bulkmail_thread_queue_mutex
    ns_share bulkmail_thread_queue

    ns_mutex lock $bulkmail_thread_queue_mutex

    catch {
	lappend bulkmail_thread_queue $thread_id
    }

    ns_mutex unlock $bulkmail_thread_queue_mutex


philg@mit.edu