36 lines
822 B
C++
36 lines
822 B
C++
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file threadPriority.h
|
|
* @author drose
|
|
* @date 2002-08-08
|
|
*/
|
|
|
|
#ifndef THREADPRIORITY_H
|
|
#define THREADPRIORITY_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
BEGIN_PUBLISH
|
|
// An enumerated type used by Thread to specify a suggested relative priority
|
|
// for a particular thread.
|
|
enum ThreadPriority {
|
|
TP_low,
|
|
TP_normal,
|
|
TP_high,
|
|
TP_urgent
|
|
};
|
|
END_PUBLISH
|
|
|
|
EXPCL_PANDA_PIPELINE std::ostream &
|
|
operator << (std::ostream &out, ThreadPriority pri);
|
|
EXPCL_PANDA_PIPELINE std::istream &
|
|
operator >> (std::istream &in, ThreadPriority &pri);
|
|
|
|
|
|
#endif
|