summary refs log tree commit diff
path: root/misc/syncfs.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2011-04-01 13:08:28 -0400
committerUlrich Drepper <drepper@gmail.com>2011-04-01 13:08:28 -0400
commit81a5726bd231f21a3621007bde58eac9a0f82885 (patch)
tree11b1d9a529d9acae47e516a0e8610f182eedab5f /misc/syncfs.c
parent00e5419f8ed1b927814ba7f84ec8f4b021efe4fe (diff)
downloadglibc-81a5726bd231f21a3621007bde58eac9a0f82885.tar.gz
glibc-81a5726bd231f21a3621007bde58eac9a0f82885.tar.xz
glibc-81a5726bd231f21a3621007bde58eac9a0f82885.zip
Add syncfs syscall.
Diffstat (limited to 'misc/syncfs.c')
-rw-r--r--misc/syncfs.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/misc/syncfs.c b/misc/syncfs.c
new file mode 100644
index 0000000000..bd7328cf84
--- /dev/null
+++ b/misc/syncfs.c
@@ -0,0 +1,33 @@
+/* Copyright (C) 2011 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+#include <errno.h>
+#include <unistd.h>
+
+/* Make all changes done to all files on the file system associated
+   with FD actually appear on disk.  */
+int
+syncfs (int fd)
+{
+  __set_errno (ENOSYS);
+  return -1;
+}
+
+
+stub_warning (syncfs)
+#include <stub-tag.h>