Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Aug 2006 20:10:55 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 104106 for review
Message-ID:  <200608152010.k7FKAtgJ053030@repoman.freebsd.org>

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

Change 104106 by jb@jb_freebsd2 on 2006/08/15 20:10:07

	Remove some residual 'alpha' arch code.

Affected files ...

.. //depot/projects/dtrace/src/usr.bin/truss/alpha-fbsd.c#4 delete
.. //depot/projects/dtrace/src/usr.bin/truss/extern.h#4 edit
.. //depot/projects/dtrace/src/usr.bin/truss/main.c#6 edit

Differences ...

==== //depot/projects/dtrace/src/usr.bin/truss/extern.h#4 (text+ko) ====

@@ -37,10 +37,6 @@
 extern void waitevent(struct trussinfo *);
 extern const char *ioctlname(register_t val);
 extern char *strsig(int sig);
-#ifdef __alpha__
-extern void alpha_syscall_entry(struct trussinfo *, int);
-extern long alpha_syscall_exit(struct trussinfo *, int);
-#endif
 #ifdef __amd64__
 extern void amd64_syscall_entry(struct trussinfo *, int);
 extern long amd64_syscall_exit(struct trussinfo *, int);

==== //depot/projects/dtrace/src/usr.bin/truss/main.c#6 (text+ko) ====

@@ -78,9 +78,6 @@
 	void (*enter_syscall)(struct trussinfo *, int);
 	long (*exit_syscall)(struct trussinfo *, int);
 } ex_types[] = {
-#ifdef __alpha__
-	{ "FreeBSD ELF", alpha_syscall_entry, alpha_syscall_exit },
-#endif
 #ifdef __amd64__
 	{ "FreeBSD ELF64", amd64_syscall_entry, amd64_syscall_exit },
 #endif



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