PERFORCE change 42722 for review
Marcel Moolenaar
marcel at FreeBSD.org
Mon Nov 17 17:16:50 PST 2003
http://perforce.freebsd.org/chv.cgi?CH=42722
Change 42722 by marcel at marcel_nfs on 2003/11/17 17:16:04
Remove lasts remnants of the gdb port and some changes that
I can't see making any difference for ia64 at this time.
Affected files ...
.. //depot/projects/ia64/contrib/sendmail/libmilter/listener.c#11 edit
.. //depot/projects/ia64/gnu/usr.bin/binutils/Makefile#9 edit
.. //depot/projects/ia64/gnu/usr.bin/binutils/as/ia64-freebsd/Makefile#5 edit
.. //depot/projects/ia64/gnu/usr.bin/binutils/gdb/Makefile.ia64#3 edit
.. //depot/projects/ia64/gnu/usr.bin/binutils/gdb/freebsd-uthread.c#7 edit
.. //depot/projects/ia64/gnu/usr.bin/binutils/gdb/kvm-fbsd.c#9 edit
.. //depot/projects/ia64/lib/libpam/modules/pam_krb5/Makefile#7 edit
.. //depot/projects/ia64/lib/libpam/modules/pam_krb5/pam_krb5.c#13 edit
.. //depot/projects/ia64/sys/kern/init_main.c#39 edit
Differences ...
==== //depot/projects/ia64/contrib/sendmail/libmilter/listener.c#11 (text+ko) ====
@@ -513,7 +513,7 @@
mi_thread_handle_wrapper(arg)
void *arg;
{
- return (void *)(uintptr_t) mi_handle_session(arg);
+ return (void *) mi_handle_session(arg);
}
/*
==== //depot/projects/ia64/gnu/usr.bin/binutils/Makefile#9 (text+ko) ====
@@ -6,8 +6,7 @@
TARGET_ARCH?= ${MACHINE_ARCH}
.if (${TARGET_ARCH} == "alpha" \
- || ${TARGET_ARCH} == "i386" \
- || ${TARGET_ARCH} == "ia64") \
+ || ${TARGET_ARCH} == "i386" ) \
&& !defined(NO_GDB)
SUBDIR+= gdb gdbreplay
.endif
==== //depot/projects/ia64/gnu/usr.bin/binutils/as/ia64-freebsd/Makefile#5 (text+ko) ====
@@ -2,6 +2,8 @@
.include "${.CURDIR}/../Makefile.inc0"
+WARNS= 0
+
.if ${TARGET_ARCH} != "ia64"
NOMAN= true
BINDIR= /usr/libexec/cross/ia64-freebsd
==== //depot/projects/ia64/gnu/usr.bin/binutils/gdb/Makefile.ia64#3 (text+ko) ====
@@ -2,4 +2,4 @@
XSRCS+= ia64-tdep.c ia64-fbsd-nat.c \
core-regset.c
-CFLAGS+= -DDEFAULT_BFD_VEC=bfd_elf64_ia64_little_vec
+CFLAGS+= -DDEFAULT_BFD_VEC=bfd_elf64_ia64_vec
==== //depot/projects/ia64/gnu/usr.bin/binutils/gdb/freebsd-uthread.c#7 (text+ko) ====
@@ -470,6 +470,14 @@
#endif
+#ifdef __ia64__
+
+static char jmpmap[125] = {
+ -1
+};
+
+#endif
+
static void
freebsd_uthread_fetch_registers (int regno)
{
==== //depot/projects/ia64/gnu/usr.bin/binutils/gdb/kvm-fbsd.c#9 (text+ko) ====
@@ -596,17 +596,6 @@
#endif /* __sparc64__ */
-#ifdef __ia64__
-
-#define SPARC_INTREG_SIZE 8
-
-static void
-fetch_kcore_registers (struct pcb *pcbp)
-{
-}
-
-#endif /* __ia64__ */
-
/* Get the registers out of a core file. This is the machine-
independent part. Fetch_core_registers is the machine-dependent
part, typically implemented in the xm-file for each architecture. */
==== //depot/projects/ia64/lib/libpam/modules/pam_krb5/Makefile#7 (text+ko) ====
@@ -28,7 +28,6 @@
SRCS= pam_krb5.c
MAN= pam_krb5.8
-WARNS= 0
DPADD= ${LIBKRB5} ${LIBGSSAPI} ${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} \
${LIBCOM_ERR} ${LIBROKEN}
LDADD= -lkrb5 -lgssapi -lasn1 -lcrypto -lcrypt -lcom_err -lroken
==== //depot/projects/ia64/lib/libpam/modules/pam_krb5/pam_krb5.c#13 (text+ko) ====
@@ -334,9 +334,6 @@
pam_sm_setcred(pam_handle_t *pamh, int flags,
int argc __unused, const char *argv[] __unused)
{
-#if 1
- return (PAM_SUCCESS);
-#else
krb5_error_code krbret;
krb5_context pam_context;
@@ -568,7 +565,6 @@
free(cache_name_buf);
return (retval);
-#endif
}
/*
==== //depot/projects/ia64/sys/kern/init_main.c#39 (text+ko) ====
@@ -46,7 +46,6 @@
#include "opt_init_path.h"
#include "opt_mac.h"
-#include "opt_sysinit.h"
#include <sys/param.h>
#include <sys/kernel.h>
@@ -210,12 +209,6 @@
if ((*sipp)->subsystem == SI_SUB_DONE)
continue;
-#ifdef SYSINIT_TRACE
- printf("SYSINIT: 0x%08x:%08x %p(%p)\n",
- (*sipp)->subsystem, (*sipp)->order,
- (*sipp)->func, (*sipp)->udata);
-#endif
-
/* Call function */
(*((*sipp)->func))((*sipp)->udata);
More information about the p4-projects
mailing list