search for: g_log_level_error

Displaying 5 results from an estimated 5 matches for "g_log_level_error".

2008 Jan 14
29
Ebb Web Server
Hello Mongrel Users, I''m writing a web server called Ebb. It''s written in C, makes use of the Mongrel HTTP parser, and uses libev its event loop. The goal is to be small, fast, and language independent server that can host web frameworks. I have written a small Ruby binding which provides a Rack handler - this will allow Ebb to host Rails, Merb, and other Ruby frameworks. In the
2007 Nov 28
0
7 commits - configure.ac libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie.c test/trace
...100 make glib warnings always fatal diff --git a/test/trace/trace.c b/test/trace/trace.c index 55276d7..40f96af 100644 --- a/test/trace/trace.c +++ b/test/trace/trace.c @@ -211,6 +211,7 @@ main (int argc, char **argv) GThreadPool *pool; GError *error = NULL; + g_log_set_always_fatal (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING); g_thread_init (NULL); /* by default get rid of the loads of warnings the tests produce */ g_setenv ("SWFDEC_DEBUG", "2", FALSE); commit 6c5f74ac52e60d861bd7bba83efc4eda2607a17e Author: Benjamin Otte <otte at gnome.org&gt...
2008 Jan 08
0
4 commits - configure.ac test/compiler.c test/.gitignore test/Makefile.am test/swfdec_test.c test/swfdec_test_function.c test/swfdec_test_function.h test/swfdec_test_global.c test/swfdec_test_initialize.as test/swfdec_test_initialize.h
...ettings from trace.c diff --git a/test/swfdec_test.c b/test/swfdec_test.c index 1e65276..87fb39a 100644 --- a/test/swfdec_test.c +++ b/test/swfdec_test.c @@ -84,6 +84,14 @@ main (int argc, char **argv) }; GOptionContext *ctx; + /* set the right warning levels */ + g_log_set_always_fatal (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING); + /* by default get rid of the loads of warnings the tests produce */ + g_setenv ("SWFDEC_DEBUG", "2", FALSE); + + g_thread_init (NULL); + swfdec_init (); + ctx = g_option_context_new (""); g_option_context_add_m...
2020 Sep 25
20
[RFC PATCH 00/19] vhost-user-rpmb (Replay Protected Memory Block)
Hi, This is an initial implementation of a vhost-user backend for the VirtIO RPMB device. The device is currently in the draft of the next VirtIO specification and describes block device which uses combination of a key, nonce, hashing and a persistent write counter to prevent replay attacks (hence Replay Protected Memory Block). It is implemented as a vhost-user device because we want to
2008 Jan 08
0
9 commits - configure.ac test/custom test/Makefile.am test/swfdec_test_initialize.as test/swfdec_test_initialize.h test/swfdec_test_test.c test/trace
...if (test->mutex) { - g_cond_signal (test->cond); - g_mutex_unlock (test->mutex); - } -} - -int -main (int argc, char **argv) -{ - GList *walk, *tests = NULL; - GString *failed_tests; - guint failures = 0; - GThreadPool *pool; - GError *error = NULL; - - g_log_set_always_fatal (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING); - g_thread_init (NULL); - /* by default get rid of the loads of warnings the tests produce */ - g_setenv ("SWFDEC_DEBUG", "2", FALSE); - swfdec_init (); - failed_tests = g_string_new (""); - - /* collect all tests in...