search for: debug_error

Displaying 4 results from an estimated 4 matches for "debug_error".

2010 Sep 20
0
No subject
...intf(logfile, format, ap); fprintf(logfile, "\n"); fflush(logfile); diff --git a/src/logger.h b/src/logger.h index 9c20ead..37cbac6 100644 --- a/src/logger.h +++ b/src/logger.h @@ -7,11 +7,11 @@ DEBUG_CONNECTIONS =3D 1, /* Show (dis)connects of other tinc daemons = via TCP */ DEBUG_ERROR =3D 2, /* Show error messages received from other hosts = */ DEBUG_STATUS =3D 2, /* Show status messages received from other = hosts */ - DEBUG_PROTOCOL =3D 3, /* Show the requests that are sent/received */ - DEBUG_META =3D 4, /* Show contents of every request that is = sent/received */...
2016 Dec 06
9
[PATCH 0/5] Improve inspection of /usr filesystems
Hi, this patch series improves the way /usr filesystems are handled: tag them appropriately, so later on we can find them and merge results they contain directly back for the root filesystem. The series includes also a new private debug API, and its usage to fix the resolution of /dev/mapper/.. devices found in fstab; without it, LVM /usr filesystems are not recognized as belonging to their
2014 Nov 27
0
[Mesa-dev] [RFC] tegra: Initial support
...ct tegra_context *context; > + > + context = calloc(1, sizeof(*context)); > + if (!context) > + return NULL; > + > + context->gpu = screen->gpu->context_create(screen->gpu, priv); > + if (!context->gpu) { > + debug_error("failed to create GPU context\n"); > + free(context); > + return NULL; > + } > + > + context->base.screen = &screen->base; > + context->base.priv = priv; > + > + context->base.destroy = tegra_destr...
2014 Nov 27
7
[RFC] tegra: Initial support
...*pscreen, void *priv) +{ + struct tegra_screen *screen = to_tegra_screen(pscreen); + struct tegra_context *context; + + context = calloc(1, sizeof(*context)); + if (!context) + return NULL; + + context->gpu = screen->gpu->context_create(screen->gpu, priv); + if (!context->gpu) { + debug_error("failed to create GPU context\n"); + free(context); + return NULL; + } + + context->base.screen = &screen->base; + context->base.priv = priv; + + context->base.destroy = tegra_destroy; + + context->base.draw_vbo = tegra_draw_vbo; + + context->base.create_blend_stat...