Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Aug 2006 04:45:55 GMT
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 103093 for review
Message-ID:  <200608030445.k734jtrC057608@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=103093

Change 103093 by marcel@marcel_nfs on 2006/08/03 04:45:22

	Eliminate prfpregset_t and prgregset_t. This actually is a fix
	in most cases. Most functions aren't implemented :-(

Affected files ...

.. //depot/projects/gdb/lib/libthread_db/arch/alpha/libc_r_md.c#3 edit
.. //depot/projects/gdb/lib/libthread_db/arch/amd64/libc_r_md.c#2 edit
.. //depot/projects/gdb/lib/libthread_db/arch/i386/libc_r_md.c#4 edit
.. //depot/projects/gdb/lib/libthread_db/arch/ia64/libc_r_md.c#2 edit
.. //depot/projects/gdb/lib/libthread_db/arch/sparc64/libc_r_md.c#2 edit

Differences ...

==== //depot/projects/gdb/lib/libthread_db/arch/alpha/libc_r_md.c#3 (text+ko) ====

@@ -31,7 +31,7 @@
 #include <machine/setjmp.h>
 
 void
-libc_r_md_getgregs(jmp_buf jb, prgregset_t r)
+libc_r_md_getgregs(jmp_buf jb, gregset_t *r)
 {
 	r->r_regs[R_V0] = jb->_jb[4];
 	r->r_regs[R_T0] = jb->_jb[5];
@@ -68,6 +68,6 @@
 }
 
 void
-libc_r_md_getfpregs(jmp_buf jb, prfpregset_t *r)
+libc_r_md_getfpregs(jmp_buf jb, fpregset_t *r)
 {
 }

==== //depot/projects/gdb/lib/libthread_db/arch/amd64/libc_r_md.c#2 (text+ko) ====

@@ -31,11 +31,11 @@
 #include <machine/setjmp.h>
 
 void
-libc_r_md_getgregs(jmp_buf jb, prgregset_t *r)
+libc_r_md_getgregs(jmp_buf jb, gregset_t *r)
 {
 }
 
 void
-libc_r_md_getfpregs(jmp_buf jb, prfpregset_t *r)
+libc_r_md_getfpregs(jmp_buf jb, fpregset_t *r)
 {
 }

==== //depot/projects/gdb/lib/libthread_db/arch/i386/libc_r_md.c#4 (text+ko) ====

@@ -31,7 +31,7 @@
 #include <machine/setjmp.h>
 
 void
-libc_r_md_getgregs(jmp_buf jb, prgregset_t r)
+libc_r_md_getgregs(jmp_buf jb, gregset_t *r)
 {
 	r->r_eip = jb->_jb[0];
 	r->r_ebx = jb->_jb[1];
@@ -43,6 +43,6 @@
 }
 
 void
-libc_r_md_getfpregs(jmp_buf jb, prfpregset_t *r)
+libc_r_md_getfpregs(jmp_buf jb, fpregset_t *r)
 {
 }

==== //depot/projects/gdb/lib/libthread_db/arch/ia64/libc_r_md.c#2 (text+ko) ====

@@ -31,11 +31,11 @@
 #include <machine/setjmp.h>
 
 void
-libc_r_md_getgregs(jmp_buf jb, prgregset_t *r)
+libc_r_md_getgregs(jmp_buf jb, gregset_t *r)
 {
 }
 
 void
-libc_r_md_getfpregs(jmp_buf jb, prfpregset_t *r)
+libc_r_md_getfpregs(jmp_buf jb, fpregset_t *r)
 {
 }

==== //depot/projects/gdb/lib/libthread_db/arch/sparc64/libc_r_md.c#2 (text+ko) ====

@@ -31,11 +31,11 @@
 #include <machine/setjmp.h>
 
 void
-libc_r_md_getgregs(jmp_buf jb, prgregset_t *r)
+libc_r_md_getgregs(jmp_buf jb, gregset_t *r)
 {
 }
 
 void
-libc_r_md_getfpregs(jmp_buf jb, prfpregset_t *r)
+libc_r_md_getfpregs(jmp_buf jb, fpregset_t *r)
 {
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608030445.k734jtrC057608>