GIO Reference Manual | ||||
---|---|---|---|---|
Top | Description | Object Hierarchy | Properties |
#include <gio/gunixinputstream.h> struct GUnixInputStream; GInputStream * g_unix_input_stream_new (gint fd
,gboolean close_fd
); void g_unix_input_stream_set_close_fd (GUnixInputStream *stream
,gboolean close_fd
); gboolean g_unix_input_stream_get_close_fd (GUnixInputStream *stream
); gint g_unix_input_stream_get_fd (GUnixInputStream *stream
);
GUnixInputStream implements GInputStream for reading from a UNIX file descriptor, including asynchronous operations. The file descriptor must be selectable, so it doesn't work with opened files.
Note that <gio/gunixinputstream.h>
belongs
to the UNIX-specific GIO interfaces, thus you have to use the
gio-unix-2.0.pc
pkg-config file when using it.
struct GUnixInputStream;
Implements GInputStream for reading from selectable unix file descriptors
GInputStream * g_unix_input_stream_new (gint fd
,gboolean close_fd
);
Creates a new GUnixInputStream for the given fd
.
If close_fd
is TRUE
, the file descriptor will be closed
when the stream is closed.
|
a UNIX file descriptor |
|
TRUE to close the file descriptor when done |
Returns : |
a new GUnixInputStream |
void g_unix_input_stream_set_close_fd (GUnixInputStream *stream
,gboolean close_fd
);
Sets whether the file descriptor of stream
shall be closed
when the stream is closed.
|
a GUnixInputStream |
|
TRUE to close the file descriptor when done |
Since 2.20
gboolean g_unix_input_stream_get_close_fd (GUnixInputStream *stream
);
Returns whether the file descriptor of stream
will be
closed when the stream is closed.
|
a GUnixInputStream |
Returns : |
TRUE if the file descriptor is closed when done |
Since 2.20
gint g_unix_input_stream_get_fd (GUnixInputStream *stream
);
Return the UNIX file descriptor that the stream reads from.
|
a GUnixInputStream |
Returns : |
The file descriptor of stream
|
Since 2.20