📄 sc_utils_ids.h
字号:
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2006 by all Contributors. All Rights reserved. The contents of this file are subject to the restrictions and limitations set forth in the SystemC Open Source License Version 2.4 (the "License"); You may not use this file except in compliance with such restrictions and limitations. You may obtain instructions on how to receive a copy of the License at http://www.systemc.org/. Software distributed by Contributors under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. *****************************************************************************//***************************************************************************** sc_utils_ids.h -- Report ids for the utils code. Original Author: Martin Janssen, Synopsys, Inc., 2002-01-17 *****************************************************************************//***************************************************************************** MODIFICATION LOG - modifiers, enter your name, affiliation, date and changes you are making here. Name, Affiliation, Date: Description of Modification: Alex Riesen, Synopsys, Inc., 2003-02-02 ported to SystemC 2.1 exception reporting. *****************************************************************************/// $Log: sc_utils_ids.h,v $// Revision 1.1.1.1 2006/12/15 20:31:39 acg// SystemC 2.2//// Revision 1.6 2006/01/25 00:31:27 acg// Andy Goodrich: Changed over to use a standard message id of// SC_ID_IEEE_1666_DEPRECATION for all deprecation messages.//// Revision 1.5 2006/01/24 22:01:35 acg// Andy Goodrich: consolidated all IEEE 1666 compliance messages to use the// SC_ID_IEEE_1666_DEPRECATION_ message type.//// Revision 1.4 2006/01/24 20:53:41 acg// Andy Goodrich: added warnings indicating that use of integer ids in reports// is deprecated. Added tracing/sc_trace_ids.h to message list.//// Revision 1.3 2006/01/13 18:53:11 acg// Andy Goodrich: Added $Log command so that CVS comments are reproduced in// the source.//#ifndef SC_UTILS_IDS_H#define SC_UTILS_IDS_H// ----------------------------------------------------------------------------// Report ids (utils)//// Report ids in the range of 800-899.// ----------------------------------------------------------------------------#ifndef SC_DEFINE_MESSAGE#define SC_DEFINE_MESSAGE(id,unused1,unused2) \ namespace sc_core { extern const char id[]; }namespace sc_core { extern const char SC_ID_REGISTER_ID_FAILED_[]; // in sc_report_handler.cpp}#endifSC_DEFINE_MESSAGE(SC_ID_STRING_TOO_LONG_, 801, "string is too long")SC_DEFINE_MESSAGE(SC_ID_FRONT_ON_EMPTY_LIST_, 802, "attempt to take front() on an empty list")SC_DEFINE_MESSAGE(SC_ID_BACK_ON_EMPTY_LIST_, 803, "attempt to take back() on an empty list")SC_DEFINE_MESSAGE(SC_ID_IEEE_1666_DEPRECATION_, 804, "/IEEE_Std_1666/deprecated" )#endif// Taf!
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -