
Global Enumerator
#include <rw/thread/RWThreadAttribute.h>
RWConcurrencyPolicy values describe whether or not new kernel threads will be created when a new thread is created.
enum RWConcurrencyPolicy {
RW_THR_NO_CHANGE, // The creation of a new thread
// will not force an increase in the
// effective concurrency
// supplied by the threads system
// (no new kernel threads are created).
RW_THR_INCREASE // The creation of a new thread
// will result
// in the creation of a new kernel thread
// to support increased concurrency
// of execution.
};
©Copyright 2000, Rogue Wave Software, Inc.
Contact Rogue Wave about documentation or support issues.