public inbox for linux-msdos@vger.kernel.org
 help / color / mirror / Atom feed
* dosemu-1.1.3.3 for testing
@ 2002-09-14 22:58 Bart Oldeman
  2002-09-16  8:26 ` Grigory Batalov
  2002-09-19 11:37 ` Michal Samek
  0 siblings, 2 replies; 4+ messages in thread
From: Bart Oldeman @ 2002-09-14 22:58 UTC (permalink / raw)
  To: linux-msdos

Hi,

a new prerelease is available at http://www.dosemu.org/testing
This includes the keyboard fixes, the 30 minutes in DOS EDIT problem, the
hlist fix (255 times "dir" gave problems), various other MFS (for
lredir'ed drives) changes, some DPMI PIC fixes and some of part of the
work to get non-suid-root IPX working.

I also included Per's get PID and PPID patch and Clarence's patch to show
the current program in the xdos title bar if you run comcom.com.

See the Changelog (in the patch) for other things and more details.

It would be good to get some feedback from people who need locking (for
Clipper, FoxPro and friends) as I changed the file locking scheme to be
more like what DOS expects and also added a patch from Sergey.

Especially if it is worse than before please tell me.

If you still have problems with locking try the patch from Sergey and see
if it makes a difference. It should not go in until we understand the bit
fiddling however.

Bart

diff -ur dosemu-1.1.3.3/src/dosext/mfs/mfs.c dosemu-1.1.3.3.bart/src/dosext/mfs/mfs.c
--- dosemu-1.1.3.3/src/dosext/mfs/mfs.c	Sun Aug 18 18:45:42 2002
+++ dosemu-1.1.3.3.bart/src/dosext/mfs/mfs.c	Sat Sep 14 18:32:38 2002
@@ -3864,8 +3864,12 @@
 			the top two bits are set. Shift the top ones by two bits. This
 			still allows OLE2 apps to operate, but should stop lockd from
 			dieing */
+#if 0
 		if ((larg.l_start & mask) != 0)
 			larg.l_start = (larg.l_start & ~mask) | ((larg.l_start & mask) >> 2);
+#else
+		larg.l_start &= 0x7fffffff;
+#endif

 		ret = fcntl (fd,F_SETLK,&larg);
 		Debug0((dbg_fd, "lock fd=%x rc=%x type=%x whence=%x start=%lx, len=%lx\n",



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-09-19 11:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-14 22:58 dosemu-1.1.3.3 for testing Bart Oldeman
2002-09-16  8:26 ` Grigory Batalov
2002-09-16 14:34   ` Bart Oldeman
2002-09-19 11:37 ` Michal Samek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox