mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-22 13:57:18 +02:00
Obsolete find_symbol and find_event from the Design class.
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#ifdef HAVE_CVS_IDENT
|
||||
#ident "$Id: netlist.h,v 1.301 2003/09/19 03:50:12 steve Exp $"
|
||||
#ident "$Id: netlist.h,v 1.302 2003/09/20 01:05:36 steve Exp $"
|
||||
#endif
|
||||
|
||||
/*
|
||||
@@ -1747,7 +1747,7 @@ class NetDisable : public NetProc {
|
||||
* The NetEvWait class represents a thread wait for an event. When
|
||||
* this statement is executed, it starts waiting on the
|
||||
* event. Conceptually, it puts itself on the event list for the
|
||||
* referenced event. When the event is triggered, the wit ends its
|
||||
* referenced event. When the event is triggered, the wait ends its
|
||||
* block and starts the associated statement.
|
||||
*
|
||||
* The NetEvTrig class represents trigger statements. Executing this
|
||||
@@ -3214,11 +3214,6 @@ class Design {
|
||||
|
||||
NetNet*find_signal(NetScope*scope, hname_t path);
|
||||
|
||||
/* This is a more general lookup that finds the named signal
|
||||
or memory, whichever is first in the search path. */
|
||||
void find_symbol(NetScope*,const string&key,
|
||||
NetNet*&sig, NetMemory*&mem);
|
||||
|
||||
// Functions
|
||||
NetFuncDef* find_function(NetScope*scope, const hname_t&key);
|
||||
NetFuncDef* find_function(const hname_t&path);
|
||||
@@ -3227,9 +3222,6 @@ class Design {
|
||||
NetScope* find_task(NetScope*scope, const hname_t&name);
|
||||
NetScope* find_task(const hname_t&key);
|
||||
|
||||
// Events
|
||||
NetEvent* find_event(NetScope*scope, const hname_t&path);
|
||||
|
||||
// NODES
|
||||
void add_node(NetNode*);
|
||||
void del_node(NetNode*);
|
||||
@@ -3316,6 +3308,9 @@ extern ostream& operator << (ostream&, NetNet::Type);
|
||||
|
||||
/*
|
||||
* $Log: netlist.h,v $
|
||||
* Revision 1.302 2003/09/20 01:05:36 steve
|
||||
* Obsolete find_symbol and find_event from the Design class.
|
||||
*
|
||||
* Revision 1.301 2003/09/19 03:50:12 steve
|
||||
* Remove find_memory method from Design class.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user