Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/sys/compat/ultrix Pull up revision 1.1 (new, requested ...
details: https://anonhg.NetBSD.org/src/rev/7d2ddf30ee10
branches: netbsd-1-4
changeset: 470225:7d2ddf30ee10
user: he <he%NetBSD.org@localhost>
date: Mon Jan 31 20:40:56 2000 +0000
description:
Pull up revision 1.1 (new, requested by mhitch):
Emulate Ultrix fcntl(F_SETLK) & Co. so the Ultrix seti@home client
works.
diffstat:
sys/compat/ultrix/ultrix_flock.h | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diffs (16 lines):
diff -r 90a529010b96 -r 7d2ddf30ee10 sys/compat/ultrix/ultrix_flock.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/compat/ultrix/ultrix_flock.h Mon Jan 31 20:40:56 2000 +0000
@@ -0,0 +1,12 @@
+/* $NetBSD: ultrix_flock.h,v 1.1.12.2 2000/01/31 20:40:56 he Exp $ */
+
+struct ultrix_flock {
+ short l_type;
+#define ULTRIX_F_RDLCK 1
+#define ULTRIX_F_WRLCK 2
+#define ULTRIX_F_UNLCK 3
+ short l_whence;
+ long l_start;
+ long l_len;
+ int l_pid;
+};
Home |
Main Index |
Thread Index |
Old Index