Date: Tue, 24 Dec 2002 09:38:18 -0800 (PST) From: Serguei Tzukanov <tzukanov@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 22710 for review Message-ID: <200212241738.gBOHcISk001705@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=22710 Change 22710 by tzukanov@tzukanov_antares on 2002/12/24 09:37:34 Post-IFC fixes. Affected files ... .. //depot/projects/s390/lib/libc/s390/gen/infinity.c#3 edit .. //depot/projects/s390/lib/libc/s390/sys/s390_sysinfo.c#2 edit .. //depot/projects/s390/sys/s390/include/sysarch.h#2 edit .. //depot/projects/s390/sys/s390/s390/pmap.c#5 edit .. //depot/projects/s390/sys/s390/s390/sys_machdep.c#2 edit .. //depot/projects/s390/sys/s390/s390/vm_machdep.c#4 edit .. //depot/projects/s390/sys/s390x/include/sysarch.h#2 edit Differences ... ==== //depot/projects/s390/lib/libc/s390/gen/infinity.c#3 (text+ko) ==== @@ -1,4 +1,6 @@ /* $FreeBSD: src/lib/libc/s390/gen/fabs.S,v 1.0 2002/03/23 02:44:18 tzukanov Exp $ */ +#include <math.h> + /* Bytes for +Infinity on a S/390. */ const union __infinity_un __infinity = {{0x7f, 0xf0, 0, 0, 0, 0, 0, 0}}; ==== //depot/projects/s390/lib/libc/s390/sys/s390_sysinfo.c#2 (text+ko) ==== @@ -12,7 +12,7 @@ int s390_sysinfo(unsigned int r0, unsigned int r1, void *buf) { - struct s390_sysarch_args p; + struct s390_sysinfo_args p; p.r0 = r0; p.r1 = r1; ==== //depot/projects/s390/sys/s390/include/sysarch.h#2 (text+ko) ==== @@ -15,16 +15,16 @@ #define S390_SYSINFO 0 struct s390_sysinfo_args { - u_int r0; - u_int r1; - void *buf; + unsigned int r0; + unsigned int r1; + void *buf; }; #ifndef _KERNEL #include <sys/cdefs.h> __BEGIN_DECLS -int s390_sysinfo(u_int, u_int, void *buf); +int s390_sysinfo(unsigned int, unsigned int, void *buf); __END_DECLS #endif /* !_KERNEL */ ==== //depot/projects/s390/sys/s390/s390/pmap.c#5 (text+ko) ==== ==== //depot/projects/s390/sys/s390/s390/sys_machdep.c#2 (text+ko) ==== ==== //depot/projects/s390/sys/s390/s390/vm_machdep.c#4 (text+ko) ==== @@ -121,7 +121,7 @@ } void -cpu_thread_dtor(struct thread *td) +cpu_thread_clean(struct thread *td) { } @@ -168,6 +168,7 @@ void cpu_set_upcall_kse(struct thread *td, struct kse *ke) { + cpu_thread_clean(td); suword(&td->td_frame->tf_gpr[2], (u_long)ke->ke_mailbox); } ==== //depot/projects/s390/sys/s390x/include/sysarch.h#2 (text+ko) ==== @@ -15,16 +15,16 @@ #define S390X_SYSINFO 0 struct s390x_sysinfo_args { - u_int r0; - u_int r1; - void *buf; + unsigned int r0; + unsigned int r1; + void *buf; }; #ifndef _KERNEL #include <sys/cdefs.h> __BEGIN_DECLS -int s390x_sysinfo(u_int, u_int, void *buf); +int s390x_sysinfo(unsigned int, unsigned int, void *buf); __END_DECLS #endif /* !_KERNEL */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200212241738.gBOHcISk001705>
