public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: cagney@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: Update system call list.
Date: Tue, 13 May 2008 18:52:00 -0000	[thread overview]
Message-ID: <20080513185247.18997.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  dd462ac1a619d28bd4410625b5c30f01d1ef4546 (commit)
      from  fe521dbf9790be8d154c513489f4727e9c2188cd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit dd462ac1a619d28bd4410625b5c30f01d1ef4546
Author: Andrew Cagney <cagney@redhat.com>
Date:   Tue May 13 14:51:39 2008 -0400

    Update system call list.
    
    frysk-core/frysk/isa/syscalls/ChangeLog
    2008-05-13  Andrew Cagney  <cagney@redhat.com>
    
    	* LinuxIA32SyscallTable.java: Add timerfd_gettime, and
    	timerfd_settime.
    	* LinuxX8664SyscallTable.java: Add timerfd_gettime, and
    	timerfd_settime; append "_old" to epoll_ctl and epoll_wait.
    	* LinuxPPC64SyscallTable.java: Add subpage_prot, and
    	timerfd_settime, and timerfd_gettime.
    	* LinuxPPC32SyscallTable.java: Ditto.

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

Summary of changes:
 frysk-core/frysk/isa/syscalls/ChangeLog            |   10 ++++++++++
 .../frysk/isa/syscalls/LinuxIA32SyscallTable.java  |    4 +++-
 .../frysk/isa/syscalls/LinuxPPC32SyscallTable.java |    5 ++++-
 .../frysk/isa/syscalls/LinuxPPC64SyscallTable.java |    5 ++++-
 .../frysk/isa/syscalls/LinuxX8664SyscallTable.java |    8 +++++---
 5 files changed, 26 insertions(+), 6 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/isa/syscalls/ChangeLog b/frysk-core/frysk/isa/syscalls/ChangeLog
index 550cc6d..3fa8546 100644
--- a/frysk-core/frysk/isa/syscalls/ChangeLog
+++ b/frysk-core/frysk/isa/syscalls/ChangeLog
@@ -1,3 +1,13 @@
+2008-05-13  Andrew Cagney  <cagney@redhat.com>
+
+	* LinuxIA32SyscallTable.java: Add timerfd_gettime, and
+	timerfd_settime.
+	* LinuxX8664SyscallTable.java: Add timerfd_gettime, and
+	timerfd_settime; append "_old" to epoll_ctl and epoll_wait.
+	* LinuxPPC64SyscallTable.java: Add subpage_prot, and
+	timerfd_settime, and timerfd_gettime.
+	* LinuxPPC32SyscallTable.java: Ditto.
+
 2008-02-07  Petr Machata  <pmachata@redhat.com>
 
 	* SyscallTable.java (getNumSyscalls): New function.
diff --git a/frysk-core/frysk/isa/syscalls/LinuxIA32SyscallTable.java b/frysk-core/frysk/isa/syscalls/LinuxIA32SyscallTable.java
index ea69293..779aa03 100644
--- a/frysk-core/frysk/isa/syscalls/LinuxIA32SyscallTable.java
+++ b/frysk-core/frysk/isa/syscalls/LinuxIA32SyscallTable.java
@@ -414,7 +414,9 @@ class LinuxIA32SyscallTable extends SyscallTable {
 	new Ia32Syscall("signalfd", 321),
 	new Ia32Syscall("timerfd", 322),
 	new Ia32Syscall("eventfd", 323),
-	new Ia32Syscall("fallocate", 324)
+	new Ia32Syscall("fallocate", 324),
+	new Ia32Syscall("timerfd_settime", 325),
+	new Ia32Syscall("timerfd_gettime", 326),
     };
 
 
diff --git a/frysk-core/frysk/isa/syscalls/LinuxPPC32SyscallTable.java b/frysk-core/frysk/isa/syscalls/LinuxPPC32SyscallTable.java
index bdd8cf9..04ff138 100644
--- a/frysk-core/frysk/isa/syscalls/LinuxPPC32SyscallTable.java
+++ b/frysk-core/frysk/isa/syscalls/LinuxPPC32SyscallTable.java
@@ -412,7 +412,10 @@ class LinuxPPC32SyscallTable extends SyscallTable {
 	new PowerPCSyscall("timerfd", 306),
 	new PowerPCSyscall("eventfd", 307),
 	new PowerPCSyscall("sync_file_range2", 308),
-	new PowerPCSyscall("fallocate", 309)
+	new PowerPCSyscall("fallocate", 309),
+	new PowerPCSyscall("subpage_prot", 310),
+	new PowerPCSyscall("timerfd_settime", 311),
+	new PowerPCSyscall("timerfd_gettime", 312),
     };
 
     static private class SocketSubSyscall extends PowerPCSyscall {
diff --git a/frysk-core/frysk/isa/syscalls/LinuxPPC64SyscallTable.java b/frysk-core/frysk/isa/syscalls/LinuxPPC64SyscallTable.java
index 02593d3..d6bfcc4 100644
--- a/frysk-core/frysk/isa/syscalls/LinuxPPC64SyscallTable.java
+++ b/frysk-core/frysk/isa/syscalls/LinuxPPC64SyscallTable.java
@@ -418,7 +418,10 @@ class LinuxPPC64SyscallTable extends SyscallTable {
 	new PowerPCSyscall ("timerfd", 306),
 	new PowerPCSyscall ("eventfd", 307),
 	new PowerPCSyscall ("sync_file_range2", 308),
-	new PowerPCSyscall ("fallocate", 309)
+	new PowerPCSyscall ("fallocate", 309),
+	new PowerPCSyscall("subpage_prot", 310),
+	new PowerPCSyscall("timerfd_settime", 311),
+	new PowerPCSyscall("timerfd_gettime", 312),
     };
 
     private static class SocketSubSyscall extends PowerPCSyscall {
diff --git a/frysk-core/frysk/isa/syscalls/LinuxX8664SyscallTable.java b/frysk-core/frysk/isa/syscalls/LinuxX8664SyscallTable.java
index 791ca65..12d79fe 100644
--- a/frysk-core/frysk/isa/syscalls/LinuxX8664SyscallTable.java
+++ b/frysk-core/frysk/isa/syscalls/LinuxX8664SyscallTable.java
@@ -300,8 +300,8 @@ class LinuxX8664SyscallTable extends SyscallTable {
 	new X8664Syscall("get_thread_area", 211, 1, "i:p "),
 	new X8664Syscall("lookup_dcookie", 212),
 	new X8664Syscall("epoll_create", 213),
-	new X8664Syscall("epoll_ctl", 214),
-	new X8664Syscall("epoll_wait", 215),
+	new X8664Syscall("epoll_ctl_old", 214),
+	new X8664Syscall("epoll_wait_old", 215),
 	new X8664Syscall("remap_file_pages", 216),
 	new X8664Syscall("getdents64", 217, 3, "i:ipi "),
 	new X8664Syscall("set_tid_address", 218),
@@ -371,7 +371,9 @@ class LinuxX8664SyscallTable extends SyscallTable {
 	new X8664Syscall("signalfd", 282),
 	new X8664Syscall("timerfd", 283),
 	new X8664Syscall("eventfd", 284),
-	new X8664Syscall("fallocate", 285)
+	new X8664Syscall("fallocate", 285),
+	new X8664Syscall("timerfd_settime", 286),
+	new X8664Syscall("timerfd_gettime", 287),
     };
 
     public Syscall getSyscall(String name) {


hooks/post-receive
--
frysk system monitor/debugger


                 reply	other threads:[~2008-05-13 18:52 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080513185247.18997.qmail@sourceware.org \
    --to=cagney@sourceware.org \
    --cc=frysk-cvs@sourceware.org \
    --cc=frysk@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).