This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB 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]

[binutils-gdb] gdb/linux-record: TASK_COMM_LEN is 16 on ppc too


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=c28ebe255ba37f4dcd295cf6a4608424aaeb699f

commit c28ebe255ba37f4dcd295cf6a4608424aaeb699f
Author: Marcin KoÅ?cielnicki <koriakin@0x04.net>
Date:   Fri Oct 30 15:52:01 2015 +0000

    gdb/linux-record: TASK_COMM_LEN is 16 on ppc too
    
    gdb/ChangeLog:
    
    	* ppc-linux-tdep.c (ppc_init_linux_record_tdep): Fix TASK_COMM_LEN.

Diff:
---
 gdb/ChangeLog        | 4 ++++
 gdb/ppc-linux-tdep.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 509fd7e..c19d8bd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2015-10-30  Marcin KoÅ?cielnicki  <koriakin@0x04.net>
 
+	* ppc-linux-tdep.c (ppc_init_linux_record_tdep): Fix TASK_COMM_LEN.
+
+2015-10-30  Marcin KoÅ?cielnicki  <koriakin@0x04.net>
+
 	* linux-record.c (record_linux_system_call): Fix old_select.
 
 2015-10-30  Marcin KoÅ?cielnicki  <koriakin@0x04.net>
diff --git a/gdb/ppc-linux-tdep.c b/gdb/ppc-linux-tdep.c
index ab20e78..f6dfb5a 100644
--- a/gdb/ppc-linux-tdep.c
+++ b/gdb/ppc-linux-tdep.c
@@ -1455,7 +1455,7 @@ ppc_init_linux_record_tdep (struct linux_record_tdep *record_tdep,
       record_tdep->size_pollfd = 8;
       record_tdep->size_NFS_FHSIZE = 32;
       record_tdep->size_knfsd_fh = 132;
-      record_tdep->size_TASK_COMM_LEN = 32;
+      record_tdep->size_TASK_COMM_LEN = 16;
       record_tdep->size_sigaction = 32;
       record_tdep->size_sigset_t = 8;
       record_tdep->size_siginfo_t = 128;
@@ -1522,7 +1522,7 @@ ppc_init_linux_record_tdep (struct linux_record_tdep *record_tdep,
       record_tdep->size_pollfd = 8;
       record_tdep->size_NFS_FHSIZE = 32;
       record_tdep->size_knfsd_fh = 132;
-      record_tdep->size_TASK_COMM_LEN = 32;
+      record_tdep->size_TASK_COMM_LEN = 16;
       record_tdep->size_sigaction = 20;
       record_tdep->size_sigset_t = 8;
       record_tdep->size_siginfo_t = 128;


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