diff options
Diffstat (limited to 'src/grt/ghwlib.h')
-rw-r--r-- | src/grt/ghwlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grt/ghwlib.h b/src/grt/ghwlib.h index 145e6c2dd..11917542a 100644 --- a/src/grt/ghwlib.h +++ b/src/grt/ghwlib.h @@ -256,7 +256,6 @@ struct ghw_sig { union ghw_type *type; union ghw_val *val; - int skip; }; enum ghw_hie_kind { @@ -333,6 +332,7 @@ struct ghw_handler /* Non-composite (or basic) signals. */ int nbr_sigs; + char *skip_sigs; struct ghw_sig *sigs; /* Hierarchy. */ @@ -359,7 +359,7 @@ void ghw_disp_hie (struct ghw_handler *h, struct ghw_hie *top); int ghw_read_base (struct ghw_handler *h); -void ghw_filter_values (struct ghw_handler *h, int *signals_to_keep, int nb_signals_to_keep); +void ghw_filter_signals (struct ghw_handler *h, int *signals_to_keep, int nb_signals_to_keep); void ghw_disp_values (struct ghw_handler *h); |