/**
 * @file   rtic_err.h
 * @brief  RTIC error codes
 *
 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
 *
 * This software is proprietary of Samsung Electronics.
 * No part of this software, either material or conceptual may be copied
 * or distributed, transmitted, transcribed, stored in a retrieval system
 * or translated into any human or computer language in any form by any means,
 * electronic, mechanical, manual or otherwise, or disclosed to third parties
 * without the express written permission of Samsung Electronics.
 */

#ifndef _RTIC_ERR_H_
#define _RTIC_ERR_H_

enum
{
	RV_SUCCESS = 0x00000,

	RV_INTERRUPT_ATTACH_FAILED = 0xF0000,
	RV_ISR_THREAD_START_FAILED,
	RV_ISR_THREAD_STOP_FAILED,
	RV_INVALID_MEM_NUMBER,
	RV_RTIC_TIME_OUT,
};
#endif /* _RTIC_ERR_H_ */
