valloric YCM [header definitions]

Gary Jennejohn gljennjohn at gmail.com
Fri Dec 8 14:02:54 UTC 2017


On Fri, 8 Dec 2017 21:23:04 +0800
blubee blubeeme <gurenchan at gmail.com> wrote:

> On Wed, Dec 6, 2017 at 2:18 AM, blubee blubeeme <gurenchan at gmail.com> wrote:
> 
> > I'm looking for where the u_int, u_long headers are defined?
> >

These are not headers, they're typedefs.

These are defined in /usr/include/sys/types.h.  This is the standard
loacation for globally used typedefs.

> > for instance MOD_LOAD, UNLOAD, ENOTSUP along with u_int and u_long aren't
> > being picked up by libclang
> >

Errors like ENOTSUP are defined in /usr/include/sys/errno.h.  This is
the standard location for globally used error codes.

> > module_t isn't being found either but I located that header file in
> > /usr/include/sys/module.h
> >
> > snd_modevent(module_t mod, int type, void *data)
> > {
> >
> > switch (type) {
> > case MOD_LOAD:
> > break;
> > case MOD_UNLOAD:
> > break;
> > default:
> > return (ENOTSUP);
> > break;
> > }
> > return 0;
> > }
> >
> > Anyone here uses YCM?
> >

[snip]

Apparently not.

You seem to have all the usual include paths in the list.  No idea
why it's not working.

-- 
Gary Jennejohn


More information about the freebsd-current mailing list