PERFORCE change 104106 for review

John Birrell jb at FreeBSD.org
Tue Aug 15 20:11:19 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=104106

Change 104106 by jb at 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


More information about the p4-projects mailing list