report.hh (13323:1cfcaaf573b9) report.hh (13401:3bf529b4bc51)
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 79 unchanged lines hidden (view full) ---

88
89 sc_core::sc_actions actions;
90 int count;
91 int limit;
92};
93
94extern const char *reportSeverityNames[sc_core::SC_MAX_SEVERITY];
95extern ReportSevInfo reportSevInfos[sc_core::SC_MAX_SEVERITY];
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 79 unchanged lines hidden (view full) ---

88
89 sc_core::sc_actions actions;
90 int count;
91 int limit;
92};
93
94extern const char *reportSeverityNames[sc_core::SC_MAX_SEVERITY];
95extern ReportSevInfo reportSevInfos[sc_core::SC_MAX_SEVERITY];
96extern std::map<std::string, ReportMsgInfo> reportMsgInfoMap;
97extern std::map<int, std::string> reportIdToMsgMap;
98
96
97std::map<std::string, ReportMsgInfo> &reportMsgInfoMap();
98std::map<int, std::string> &reportIdToMsgMap();
99
99extern int reportVerbosityLevel;
100
101extern sc_core::sc_actions reportSuppressedActions;
102extern sc_core::sc_actions reportForcedActions;
103extern sc_core::sc_actions reportCatchActions;
104
105extern sc_core::sc_report_handler_proc reportHandlerProc;
106

--- 22 unchanged lines hidden ---
100extern int reportVerbosityLevel;
101
102extern sc_core::sc_actions reportSuppressedActions;
103extern sc_core::sc_actions reportForcedActions;
104extern sc_core::sc_actions reportCatchActions;
105
106extern sc_core::sc_report_handler_proc reportHandlerProc;
107

--- 22 unchanged lines hidden ---