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.18-254-gd39baad


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  d39baad11e5092b56621902f8406c64c092a90dc (commit)
      from  29d73d867e1df54d703542cf7d076c5620dc2fb7 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d39baad11e5092b56621902f8406c64c092a90dc

commit d39baad11e5092b56621902f8406c64c092a90dc
Author: Ryan S. Arnold <ryan.arnold@linaro.org>
Date:   Fri Oct 4 12:07:04 2013 -0500

    Update generic swapon definition to match prototype.

diff --git a/ChangeLog b/ChangeLog
index 6c0d322..2ff5516 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-04  Ryan S. Arnold  <ryan.arnold@linaro.org>
+
+	* misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
+	match prototype.
+
 2013-10-04  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
diff --git a/misc/swapon.c b/misc/swapon.c
index 61933b8..0e587d4 100644
--- a/misc/swapon.c
+++ b/misc/swapon.c
@@ -22,8 +22,7 @@
 /* Make the block special device PATH available to the system for swapping.
    This call is restricted to the super-user.  */
 int
-swapon (path)
-     const char *path;
+swapon (const char *path, int flags)
 {
   __set_errno (ENOSYS);
   return -1;

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

Summary of changes:
 ChangeLog     |    5 +++++
 misc/swapon.c |    3 +--
 2 files changed, 6 insertions(+), 2 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]