This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.12-107-g3162f12


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  3162f12e58c3a848db883916843b332b9f8c9d39 (commit)
      from  28c90b2cf51d77c318831c79a62ff0bb3fd17042 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=3162f12e58c3a848db883916843b332b9f8c9d39

commit 3162f12e58c3a848db883916843b332b9f8c9d39
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sun Aug 15 20:07:32 2010 -0700

    Remove third argument from fanotify_init function

diff --git a/ChangeLog b/ChangeLog
index b8ac051..b060db5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
+	from fanotify_init.
+	* sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
+	* sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
+
 2010-08-15  Ulrich Drepper  <drepper@redhat.com>
 
 	* sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
diff --git a/sysdeps/unix/sysv/linux/i386/syscalls.list b/sysdeps/unix/sysv/linux/i386/syscalls.list
index 91c70e8..893a4a8 100644
--- a/sysdeps/unix/sysv/linux/i386/syscalls.list
+++ b/sysdeps/unix/sysv/linux/i386/syscalls.list
@@ -9,5 +9,5 @@ waitpid		-	waitpid		Ci:ipi	__waitpid	waitpid	__libc_waitpid
 
 prlimit64	EXTRA	prlimit64	i:iipp	prlimit64
 
-fanotify_init	EXTRA	fanotify_init	i:iii	fanotify_init
+fanotify_init	EXTRA	fanotify_init	i:ii	fanotify_init
 fanotify_mark	EXTRA	fanotify_mark	i:iiiiis	fanotify_mark
diff --git a/sysdeps/unix/sysv/linux/sys/fanotify.h b/sysdeps/unix/sysv/linux/sys/fanotify.h
index baf5ec3..bf8500c 100644
--- a/sysdeps/unix/sysv/linux/sys/fanotify.h
+++ b/sysdeps/unix/sysv/linux/sys/fanotify.h
@@ -26,8 +26,8 @@
 __BEGIN_DECLS
 
 /* Create and initialize fanotify group.  */
-extern int fanotify_init (unsigned int __flags, unsigned int __event_f_flags,
-			  int __priority) __THROW;
+extern int fanotify_init (unsigned int __flags, unsigned int __event_f_flags)
+  __THROW;
 
 /* Add, remove, or modify an fanotify mark on a filesystem object.  */
 extern int fanotify_mark (int __fanotify_fd, unsigned int __flags,
diff --git a/sysdeps/unix/sysv/linux/wordsize-64/syscalls.list b/sysdeps/unix/sysv/linux/wordsize-64/syscalls.list
index 4276bd6..4471d53 100644
--- a/sysdeps/unix/sysv/linux/wordsize-64/syscalls.list
+++ b/sysdeps/unix/sysv/linux/wordsize-64/syscalls.list
@@ -19,5 +19,5 @@ creat		-	creat		Ci:si	__libc_creat	creat creat64
 open		-	open		Ci:siv	__libc_open	__open open __open64 open64
 prlimit		EXTRA	prlimit64	i:iipp	prlimit		prlimit64
 
-fanotify_init	EXTRA	fanotify_init	i:iii	fanotify_init
+fanotify_init	EXTRA	fanotify_init	i:ii	fanotify_init
 fanotify_mark	EXTRA	fanotify_mark	i:iiiis	fanotify_mark

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                         |    7 +++++++
 sysdeps/unix/sysv/linux/i386/syscalls.list        |    2 +-
 sysdeps/unix/sysv/linux/sys/fanotify.h            |    4 ++--
 sysdeps/unix/sysv/linux/wordsize-64/syscalls.list |    2 +-
 4 files changed, 11 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]