GLib IO Symbols
Enumerations from GLib used by GIO
GSeekTypeAn enumeration specifying the base position for a seek operation
curThe current position in the file.
setThe start of the file.
endThe end of the file.
GIOConditionA bitwise combination representing a condition to watch for on an event source.
inThere is data to read.
outData can be written (unblocked).
priThere is urgent data to read.
errError condition.
hupHung up (the connection has been broken, usually for pipes and sockets).
nvalInvalid request. The file descriptor is not open.
GPriorityConvenient constants for indicating the priority of I/O operations.
highUse this for high priority event sources. It is not used within GLib or GTK+.
defaultUse this for default priority event sources. In GLib this priority is used when adding timeout functions with g_timeout_add(). In GDK this priority is used for events from the X server.
high-idleUse this for high priority idle functions. GTK+ uses G_PRIORITY_HIGH_IDLE + 10 for resizing operations, and G_PRIORITY_HIGH_IDLE + 20 for redrawing operations. (This is done to ensure that any pending resizes are processed before any pending redraws, so that widgets are not redrawn twice unnecessarily.)
default-idleUse this for default priority idle functions. In GLib this priority is used when adding idle functions with g_idle_add().
lowUse this for very low priority background tasks. It is not used within GLib or GTK+.
Michael Lawrence
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.