This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH v2 04/25] Introduce interpreter factories


Pedro Alves <palves@redhat.com> writes:

> +void
> +interp_factory_register (const char *name, interp_factory_func func)
> +{
> +  struct interp_factory *f = XNEW (struct interp_factory);
> +
> +  f->name = name;
> +  f->func = func;
> +
> +  /* FIXME: assert that no factory for NAME is already registered.  */
> +  VEC_safe_push (interp_factory_p, interpreter_factories, f);
> +}

It shouldn't be hard to do the assert here, and get rid of the FIXME.

-- 
Yao (éå)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]