Messages in this thread Patch in this message |  | | Date | Fri, 05 Jul 1996 22:13:32 +0200 | From | Markus Kossmann <> | Subject | linux-2.0.2 and dosemu-0.63.1.44 |
| |
Hi Linus, Hi all there is a small bug in linux/include/asm-i386/posix-types.h of linux-2.0.2, which prevents compilation of dosemu-0.63.1.44. The following patch should remove that bug:
emil:/usr/src/linux/include/asm # diff -u posix_types.h.old posix_types.h --- posix_types.h.old Fri Jul 5 21:51:23 1996 +++ posix_types.h Fri Jul 5 21:52:37 1996 @@ -57,7 +57,7 @@ #define __FD_ZERO(fdsetp) \ __asm__ __volatile__("cld ; rep ; stosl" \ :"=m" (*(__kernel_fd_set *) (fdsetp)) \ - :"a" (0), "c" (__FDSET_INTS), \ + :"a" (0), "c" (__FDSET_LONGS), \ "D" ((__kernel_fd_set *) (fdsetp)) :"cx","di") #endif
-- ------------------------------------------------------------------------------ Markus <mk@emil.inka.de> (Markus Kossmann)
|  |