Tagged Questions

GLib is a general-purpose and cross-platform utility library, which provides many useful data types, macros, type conversions, string utilities, file utilities, a main loop abstraction, and so on.

learn more… | top users | synonyms

27
votes
17answers
1k views

Does using large libraries inherently make slower code?

I have a psychological tic which makes me reluctant to use large libraries (like GLib or Boost) in lower-level languages like C and C++. In my mind, I think: Well, this library has thousands of ...
12
votes
5answers
5k views

Material to learn GObject and Glib

I am comfortable with C. but need to learn GObject and Glib for gstreamer. All i found on net is Gobject reference manual. Its good but looking for tutorial for Gobject/Glib as the main focus is on ...
10
votes
3answers
9k views

Why can't I build a “hello world” for glib?

So here's the world's simplest glib program: #include <glib.h> I try to compile it with gcc test.c and I get: test.c:1:18: error: glib.h: No such file or directory So I make sure that I ...
10
votes
3answers
2k views

GLib v APR pros and cons of each

I have a couple of hobby C programming projects that I would like to start. I am looking for an open source library that has a liberal license (I want credit, but pretty much anybody can use). The ...
6
votes
2answers
520 views

Valgrind reports memory 'possibly lost' when using glib data types

I'm developing a library using a number of glib datastructures (GHashTable, GSList etc.). I've been checking my code frequently for memory leaks using valgrind. Most of the issues valgrind points out ...
6
votes
2answers
736 views

MD5 routines that are GLib friendly?

Does anyone know of an MD5/SHA1/etc routine that is easily used with GLib (i.e. you can give it a GIOChannel, etc)?
5
votes
2answers
393 views

What non-GUI programs use glib?

What non-GUI programs (daemons) use glib?
5
votes
4answers
710 views

Why use glib functions?

While programming in C and GTK+, Why is it "better" to use g_strdup_printf, g_free, g_strcmp0 etc... and fellow glib functions? Merci!
4
votes
1answer
50 views

How does GHashTable use the hash value to store its nodes?

The documentation for g_hash_table_new() indicates Hash values are used to determine where keys are stored within the GHashTable data structure. but how are the hash values used? It seems ...
4
votes
1answer
337 views

using tcmalloc with glib

I want to test the performance improvement that I could get by using Google's tcmalloc. My program is built using quite a lot of the utilities provided by glib (hashes, lists, arrays, ...). So what I ...
4
votes
3answers
445 views

glib memory allocation VS std *alloc and free

I tend to use std *alloc/free functions to allocate/free dynamic memory in my C programs. I wonder if there are any good reasons to use the GLIB Memory Allocation functions instead of the std ones. ...
4
votes
2answers
435 views

Glib::ustring and Japanese characters

Glib::ustring is supposed to work well with UTF8 but I have a problem when working with Japanese strings. If you compare those two strings, "わたし" and "ワタシ", using == operator or compare method, it ...
3
votes
1answer
67 views

how to add Xorg event handing in g_main_loop

I have a lightweight application that catches Xorg and dbus events. In order to do this I initialized dbus loop and started g_main_loop, but I don't know how to add Xorg event handling in a natural ...
3
votes
2answers
175 views

Is g_slice really faster than malloc

The GLib docs recommend use of the GLib Slice Allocator over malloc: "For newly written code it is recommended to use the new g_slice API instead of g_malloc() and friends, as long as objects are ...
3
votes
1answer
164 views

Garbage collection with glib?

I would like to interface an garbage collected language (specifically, it's using the venerable Boehm libgc) to the glib family of APIs. glib and gobject use reference counting internally to manage ...
3
votes
1answer
134 views

gobject/gnome/glib bindings for D using GIR?

Does anyone know if there are bindings for the gobject family of librares (glib, Gnome, clutter, etc) available for the D language that use the GIR introspection mechanism? I would like to write an ...
3
votes
1answer
126 views

Are there any Linux alternatives to libgpod for reading/writing iPod databases?

I am writing a C program to sync my iPod, in the same spirit as gtkpod but for the console. Gtkpod uses their own library, libgpod, for connecting to ipod dbs. I want to know if there are any ...
3
votes
2answers
270 views

how to get GDB to break on a glib assertion failure?

Somewhere in a mass of code that I did not write (but I am trying to debug), an assertion fails in the glib library: (process:31987): GLib-CRITICAL **: g_hash_table_lookup: assertion `hash_table != ...
3
votes
2answers
49 views

possible to retrieve time left on a glib 'event?'

I am creating an event with g_timeout_add or g_timeout_add_seconds which returns an event id; I can cancel the event by calling g_source_remove. However, at some point what I would like to do is see ...
3
votes
1answer
309 views

D-Bus GLib bindings—unable to get code off the ground

I've been playing with GLib's D-Bus bindings, trying to get something (anything) working, with very limited success. I've been trying to get Ross Burton's example code to compile and run, but keep ...
3
votes
1answer
362 views

Japanese half/full width conversion

I'm facing a character width problem in Japanese using glib::ustring. I have this string: ウェッジパンプス I want to convert it to: ウエッシパンプス Using ustring::normalize, i get this string: ウェッジパンプス (in ...
3
votes
3answers
162 views

How do I get the executing program's directory in C using a plataform independent method?

I develop my app in Linux for both unix and win32(cross compile at each build) platforms, so a ready to use function would be nice :). I'm using glib that has the gchar* g_get_current_dir(void) ...
3
votes
1answer
176 views

Variable timeouts in GLib

I need to modify a GLib's time-out interval while it is in execution. Is that possible? I took a look to the source code and it seems possible to me, but is required use some non-public functions from ...
3
votes
2answers
312 views

How to make command-line options mandatory with GLib?

I use GLib to parse some command-line options. The problem is that I want to make two of those options mandatory so that the program terminates with the help screen if the user omits them. My code ...
3
votes
5answers
1k views

How to walk a directory in C

I am using glib in my application, and I see there are convenience wrappers in glib for C's remove, unlink and rmdir. But these only work on a single file or directory at a time. As far as I can see, ...
3
votes
1answer
225 views

Why does glib redefine types?

What is the reasoning behind types to be redefined in glib? Why do they turn char into gchar, int into gint etc. ?
3
votes
1answer
800 views

Macro for iterating over a GList

I am using GLib's doubly linked list structure, GList. I would like to know if there is any standard macro for iterating over a GList. I couldn't find any such thing in the GLib documentation. As a ...
3
votes
2answers
215 views

C/Glib Strings that should be freed by the caller. {SOLVED}

I am using glib, it has a lot of functions that return strings that should be freed myself.Can I, pass these functions to other functions? Example: function1 returns a string that must be freed for ...
2
votes
2answers
51 views

glib gremlin with GHC 7.4

I'm in the process of following this process, tested with GHC 7.2.2 for installing gtk2hs and related kit, but I've hit a little snag. I'm using Mac OS X Lion, glib 2.30.2 installed via homebrew, and ...
2
votes
3answers
46 views

Does a mutex guarantee visibility (GLib)?

I'm using Glib's mutex utilities to handle concurrency. Is it guaranteed that the updated version of a modified variable will be visible to any other thread after unlocking a mutex? Do these threads ...
2
votes
1answer
35 views

Is GHashTable (glib2) thread safe?

I have multiple threads adding, modifying and looking up data in GHashTable. Is it threadsafe, or do I need to implement threadsafety myself?
2
votes
1answer
269 views

GLIB: configure: error: C compiler cannot create executables in windows

Configure Command is Go to Glib Directory -> run this command ./configure --prefix="Installation directory" While configure the Glib package in windows, It shows the following results. checking ...
2
votes
2answers
135 views

Possible to run multiple main loops?

I'm working with both libfuse and the glib event interface and I've run into an issue where I need to run multiple main loops concurrently (glib's g_main_loop_run and fuse_loop_mt). I've already ...
2
votes
1answer
61 views

how to free memory allocated by g_thread_init

I would like to know if it's possible to free the memory allocated by g_thread_init(NULL) here is my code : int main(void) { g_thread_init(NULL); g_thread_exit(NULL); } and the ...
2
votes
2answers
103 views

How to convert binary to hexadecimal string in C/glib?

Is there a common way or good public domain code for converting binary (i.e. byte array or memory block) to hexadecimal string? I have a several applications that handle encryption keys and checksums ...
2
votes
2answers
108 views

GLib API to convert hexadecimal string to ASCII string?

I cannot believe there is no API to do this in GLib, for now I have only found people doing their own conversion, like here and here (function named "decode"). I would really like to find a way to do ...
2
votes
2answers
207 views

zeromq glib main loop integration

I wanted to add a zeromq socket to a glib program. Pity is, a zmq socket is not poll()able, and they give their implementation which overloads the old poll() func. How could I integrate that into the ...
2
votes
1answer
100 views

Ghashtable storing double

Hello I was wondering if it was possible to store a double into a ghashtable considering there is no gdouble_to_pointer methdod. I am following a tutorial I found online by IBM ...
2
votes
1answer
269 views

cabal install glib makes error

I tried installing gtk2hs in many ways but have no luck so far installation always failed with glib issue So I tried installing glib first with cabal install glib but error arise again the error ...
2
votes
2answers
218 views

Passing data structure through glib queue

I have another pointer question, so I'd be really glad if you could help me to solve that I have this structure: uint8_t *reconstructed[3]; reconstructed[0] = buff_offset + (uint8_t *) malloc ...
2
votes
1answer
120 views

GLIB: g_atomic_int_get becomes NO-OP?

In a larger piece of code, I noticed that the g_atomic_* functions in glib were not doing what I expected, so I wrote this simple example: #include <stdlib.h> #include "glib.h" #include ...
2
votes
1answer
225 views

Looking for a decent introduction to Glib

I need a crash course on Glib concepts. It's easy enough to find reference material for the APIs, but I haven't found any kind of tutorial or introductory article that puts things together. There is a ...
2
votes
1answer
353 views

How to use glib on iphone?

I'm working on a project these days. A third party library was included in my project, and the library is based on glib. That really make me crazy. Can you everybody tell me what should I do? How to ...
2
votes
2answers
200 views

Advance a UTF-8 character to the next

I want to change a UTF-8 character (which is in a gchar array), so it gets the value of the next character according to the standard. I'm using glib and I don't see a function like that. I'm thinking ...
2
votes
4answers
1k views

How can I get the temporary directory path in Ubuntu?

How can I get the temporary directory path in Ubuntu?
2
votes
2answers
183 views

What has to be Glib::init()'ed in order to use Glib::wrap?

So I'm trying to make use of a GtkSourceView in C++ using GtkSourceViewmm, whose documentation and level of support give me the impression that it hasn't been very carefully looked at in a long time. ...
2
votes
1answer
121 views

tkinter integration with glib mainloop

Is it possible to integrate tkinter with glib mainloop ?
2
votes
1answer
515 views

python glib main loop: delaying until loop is entered

Is there a way to schedule the execution of a callable until the glib main loop is entered? Alternatively, is there a signal I can subscribe to that will indicate that the main loop is entered?
2
votes
1answer
496 views

glibc, glib and gnulib

what are differences in the strength and features in gnulib glib and glibc Thanks!
2
votes
2answers
968 views

Glib use in an iPhone App

I would like to develop an iPhone App based on an existing open-source Objective-C framework, however that framework makes extensive use of the glib library and I cannot find a way to build and ...

1 2 3 4 5