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

1
vote
0answers
13 views

How can I work with a GLib.Array in Python?

I am writing a plugin for Rhythmbox, wherein a signal raised is passing in an object of type GArray. The documentation for GLib Arrays shows me a few methods I am interested in, but am unable to ...
0
votes
0answers
16 views

Cross Compiling GLib for MIPS results in “No iconv() implementation” configure error

I'm trying to cross-compile GLib 2.37.0 for a MIPS system by following the directions here. I have a mips.cache file with the following contents: glib_cv_stack_grows=no glib_cv_uscore=no ...
1
vote
1answer
35 views

Is GList (glib-doubly-linked-list) thread safe?

In a multi-threaded C program I used GList functionality of GLib (https://developer.gnome.org/glib/2.35/glib-Doubly-Linked-Lists.html#g-list-append) where multiple threads created their own lists. I ...
0
votes
2answers
35 views

thread for callback function in timeout_add

On which thread does the callback function gets executed after every "interval" milliseconds when we schedule a function using the following method?? def glib.timeout_add(interval, callback, ...) ...
0
votes
1answer
32 views

How can I build glib at c++ - compile error when build .cpp

All When I build cpp using g++ and glib, I meet compile error. c and gcc version is OK. I'm building at Ubuntu 10.XX. I even built it at windows - c++. How can I build glib at c++? Thanks you. ...
-1
votes
1answer
26 views

installing json-glib on centOS6 [closed]

I need to use json parsing in C. I consider that using json-glib might be makes things easy. so I downloaded and ./configure. while ./configure --prefix=/usr, console print some error. messages ...
-1
votes
1answer
17 views

better practice for work with saved buffer

I am working on a gtk_list_store, that will save the rows to a file (g_file_set_contents(file, buffer)) After saving the datas to a file, without exiting, I will like to edit the file (as buffer) ...
1
vote
1answer
86 views

GArray overflow

What happens when g_array_append_val() or one of the other append/prepend functions in GLib, makes the length of the GArray larger than what guint (unsigned int) can hold? The documentation doesn't ...
0
votes
1answer
23 views

cmake to eclipse poject conversion issue

I am trying to create an eclipse project from a cmake project . I used the following command cmake -G "Eclipse CDT4 - Unix Makefiles" ./` it gives the following error CMake Error at ...
1
vote
0answers
35 views

can someone explain where the “g_io_create_watch” definiton is?

I was analysing how GIOchannel, glib source code. can someone explain. GSource * g_io_create_watch (GIOChannel *channel,GIOCondition condition){ g_return_val_if_fail (channel != NULL, NULL); ...
0
votes
0answers
70 views

Maliit Framework Building Errors in Ubuntu 12.04

Actually my actual aim is to install the Maliit Virtual Keyboard in my PDA Root file system. As per the steps and instructions i have to install Qt4/Qt5 in the Target RFS and then download, build ...
0
votes
0answers
69 views

Glib cross-compiling

I'm trying to cross compile glib for an arm based board. I use the arm-linux-gnueabi toolchain. The ./configure steps went fine but make had an error: warning: libgmodule-2.0.so.0, needed by ...
0
votes
2answers
34 views

How do I access “named properties” in a GTK struct?

I'm trying to get a GTK-3.0-based app to build and I need to modify some code so that it uses the "master" property in a struct: ...
0
votes
1answer
16 views

Error when attempting to call a remote method in DBus

I am trying to invoke a remote method using dbus_g_proxy_call(proxy,"myFunc",&error,G_TYPE_INVALID,G_TYPE_INVALID); but when I try this I get an error message saying "Method "myFunc" with ...
0
votes
0answers
28 views

Trying to install gdome2-0.8.1

I've been trying to install gdome2-0.8.1 on my mountain lion, and it's come to a place where I can't get any further, any help is much appreciated. I'm not really familiar how to build softwares from ...
1
vote
1answer
43 views

Can't Understand Glib Error

I am making use of the glib 2.0 framework. After some time, my C program outputs this error: GLib-CRITICAL **: g_hash_table_foreach_remove_or_steal: assertion `version == hash_table->version' ...
0
votes
1answer
56 views

fail to compiled glib

I try to compile glib from source code. But an I/O error stops me. make[2]: Entering directory `/usr/src/gtk3/glib-2.36.0/docs' Making all in reference make[3]: Entering directory ...
2
votes
3answers
88 views

Dump GHashTable to file

In my application, I need to save a Glib GHashTable instance into disk, and then load into memory later. But I cannot find any way to dump the instance directly. An option is not to save the ...
0
votes
1answer
70 views

g_hash_table: int64 as key

I am using glib g_hash_table to create a hash table, with int64 as key and pointer as value. I tried this code but it fails: GHashTable* hash = g_hash_table_new(g_int64_hash, g_int64_equal); ...
2
votes
0answers
58 views

glib gtk - invalid class pointer

I get this error when running my application GLib-GObject-WARNING **: gtype.c:3119: invalid class pointer `0xdfbb60' It usually happens with a subclass of a GooCanvasGroup object being passed to ...
2
votes
1answer
90 views

Cleaner regular expression code in C?

I've got a C program that processes output from some shell commands. For 'ps', I'm interested in the following five fields. I specify the fields that I want by name, build the pattern for the glib ...
1
vote
1answer
35 views

How to create folders with 666 permission using vala?

Any user needs to be able to delete files and/or folders created by this embedded-linux root process. But this vala source DirUtils.create_with_parents(folder, 0666) is creating 0644 folders owned by ...
1
vote
2answers
82 views

g_strsplit giving me an error ( free(): invalid next size)

I am making use of glib 2.0 API. I am reading a CSV file, and making use of the g_strsplit function to get the data between the commas. The following is my code: gchar* record = ...
0
votes
1answer
78 views

flex+bison output in a glib's hash container

I have managed considerable progress in parsing the bib file, but the next step is quite tough for my present level of understanding. I have created bison and flex code, that parses the bib file above ...
0
votes
1answer
64 views

GDBus : Migrating to GDBUS and understanding the GVariants and GTypes

GVariant is opaque data structure used in the GDBUS bindings for libDBus. Its been mentioned that GVariant is a floating reference count system. What actually does a floating reference mean in this ...
0
votes
1answer
62 views

C CSV GLIB sort optmization

I was asked a question on a recent interview at Sevone but I never got a response on how I did. I only had 2 hours to complete the challenge and i could not get it to sort by gender. Here is what I ...
2
votes
1answer
192 views

Building Gstreamer 1.0.5 on Windows

I have the projects setup as described in the readme, and have GLib 2.28.8 installed and compiling. When I get to compiling gstreamer, I get thousands of errors that indicate to me that something is ...
0
votes
0answers
61 views

adding new programs to the Strawberry Perl MinGW distribution

I'm trying to compile libUnihan on my computer. I have Strawberry Perl installed, and it contains MinGW. I've had trouble in the past having a separate version of MinGW on my machine (it caused module ...
1
vote
1answer
65 views

Weasyprint GLib error

I installed WeasyPrint and all packages that were listed in the Weasyprint - documentation I'm using Mac OS X 10.8.2 and Python 2.7 And installed Weasyprint in my virtualenv . Now when i try : ...
0
votes
1answer
121 views

Gnome N-ary Trees usage in c++

I'm trying to implement an N-ary Tree in c++ using the glib, but as I'm not a c++ expert, I'm having some problems finding out how to use it right. Does anybody have a simple example written in C++ to ...
0
votes
1answer
109 views

How to print a guint64 value when using glib?

Problem I am making use of the GLib 2.0 library, and declared a gunit64 variable. I wish to print its value to screen, but its not working properly. Code Consider the following code snippet as an ...
2
votes
1answer
79 views

working at each iteration g_hash_table_foreach

I wish to loop through every key value pair within my hashtable. Therefore I used the g_hash_table_foreach() function (Prototype shown below). For each key value pair, it calls a void func method. ...
0
votes
1answer
79 views

Linking glib in XCode

I have a strange issue, that may be obvious, but is really not clear for me at the moment : I'm making a Quartz Composer plugin. I have an XCode workspace based which includes a custom library. This ...
2
votes
1answer
99 views

glib's GAsyncQueue equivalent for C++?

glib has a data structure called GAsyncQueue, which allows inter-thread communication with no semaphores/locks/etc., and even makes trivial the task of implementing a producer/consumer solution. If ...
0
votes
3answers
65 views

segfault in g_slice_alloc

I am calling a function with the following lines: void call_system_command(const char *command_params) { GString *cmd = g_string_sized_new(1024); g_string_append_printf(cmd, "/bin/bash ...
0
votes
0answers
86 views

Python 2.5 not found from MinGW, what's the proper way to set up its path?

I'm trying to build glib using MinGW as an exercise (I know there's precompiled binaries available). I've installed Python 2.5.4 locally, and it seems the installer did not set any environment ...
0
votes
2answers
107 views

Compiling atk from source

I tried to compile atk 2.7.91 from source. Since I am working on an older ubuntu system there are no recent packages for the required glib version. So I just downloaded glib 2.35.8 and did ...
0
votes
0answers
85 views

Glib main loop never calls GSourceFunc added with g_idle_add()

I'm using gstreamer-java, and I'm trying to add a function to be called when the/any glib main loop is idle. Here's a very terse version of what I have so far: class Bozo extends AppSrc implements ...
2
votes
1answer
102 views

Purpose of GValue, GTypeValueTable, GTypeInfo and GParamSpec

GObject library is really awfully documented. It's damn hard to figure the purposes of entities created. Namely, I don't get the roles of GValue, GTypeValueTable, GTypeInfo, GParamSpec and TypeData. ...
0
votes
2answers
174 views

C++ Passing a long string to constructor or setter

I have a class with a Glib::ustring member (if you're not familar with it, assume it's std::string) which is expected to contain a long string, i.e. at lest one paragraph, maybe a few more. Maybe even ...
0
votes
1answer
81 views

Adding GLib to an existing application with gnu toolchain (configure, Makefile, etc.)

I've added code to an existing large application and need to make GLib a requirement, as my code relies on it. For development, I just manually edited the Makefile to add -lglib-2.0 To the LIBS= ...
0
votes
2answers
84 views

Redirecting output of an external application started with glib

I'm trying to use vala to start an external application using GLib with spawn_command_line_sync(). According to the documentation (http://valadoc.org/#!api=glib-2.0/GLib.Process.spawn_sync) you can ...
0
votes
1answer
52 views

gtk-vim-syntax with Janus

I recently fell in love with Janus, I can't live without it anymore. I decided to do some C programming and came across this: http://www.vim.org/scripts/script.php?script_id=1000. I have absolutely ...
0
votes
1answer
37 views

ClutterActor properties

I just started playing around with clutter a bit, and I got a question in regards to setting properties on a ClutterActor. I want to set the pivot-point property, after searching though the ...
2
votes
1answer
60 views

Application needs to be running for dbus_g_proxy_new_for_name to work?

Can i call dbus_g_proxy_new_for_name without the application that implements the D-Bus method to be up and running ? I'm not sure if it is good practice to do so, or if is usual.
0
votes
2answers
87 views

Free memory for elements of GArray

I create drvm *drv structure in my function. This structure itself contains fields which contains malloc()-ed fields (uint32_t *buffer). The code which do that is similar to that: ... size_t elm_size ...
3
votes
1answer
85 views

why does g_file_copy return Operation not supported when DBUS_SESSION_BUS_ADDRESS is not set

The following code works fine as a normal user session: #include <gio/gio.h> int main() { const gchar *uri = "http://stackoverflow.com/questions/5758770/"; GFile *in; ...
1
vote
2answers
72 views

multiple threads vs reference counting: does each thread count variables separately

I've been playing around with glib, which utilizes reference counting to manage memory for its objects; supports multiple threads. What I can't understand is how they play together. Namely: In ...
0
votes
1answer
71 views

How to correctly compile C app for 64 bits with CUDA 5 and Glib on Windows?

i'm trying to compile a project on VS2010 for 64 bits wrote in C and use CUDA 5.0 and GLib. I already had a working profile for 32 bits and everything goes ok. On configuration manager i created a ...
1
vote
1answer
94 views

Glib memory leak using valgrind investigation

I know that there is similiar thread before here about this problem and on this site https://live.gnome.org/Valgrind had been explained, I wrote my simple program below #include <glib.h> ...

1 2 3 4 5 9