/*
* Copyright (c) 2013-2015 Vladimir Alemasov
* All rights reserved
*
* This program and the accompanying materials are distributed under 
* the terms of GNU General Public License version 2 
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*/

#ifndef THREAD_STATE_H_
#define THREAD_STATE_H_

//--------------------------------------------
typedef enum
{
	THREAD_RUNNING,
	THREAD_STAYING,
	THREAD_STOPPED
} thread_state_t;


#endif /* THREAD_STATE_H_ */
