Rename g_unix_pipe_flags to g_unix_open_pipe

From IRC discussion, people liked this name more.

https://bugzilla.gnome.org/show_bug.cgi?id=649322
This commit is contained in:
Colin Walters
2011-05-03 16:31:34 -04:00
committed by Matthias Clasen
parent ba5c9bd39f
commit 542215b78a
7 changed files with 13 additions and 13 deletions

View File

@@ -74,7 +74,7 @@ g_unix_set_error_from_errno_saved (GError **error,
}
/**
* g_unix_pipe_flags:
* g_unix_open_pipe:
* @fds: Array of two integers
* @flags: Bitfield of file descriptor flags, see "man 2 fcntl"
* @error: a #GError
@@ -93,9 +93,9 @@ g_unix_set_error_from_errno_saved (GError **error,
* Since: 2.30
*/
gboolean
g_unix_pipe_flags (int *fds,
int flags,
GError **error)
g_unix_open_pipe (int *fds,
int flags,
GError **error)
{
int ecode;