1 1.1.2.2 thorpej /* $NetBSD: ultrix_flock.h,v 1.1.2.2 1999/08/02 21:55:14 thorpej Exp $ */ 2 1.1.2.2 thorpej 3 1.1.2.2 thorpej struct ultrix_flock { 4 1.1.2.2 thorpej short l_type; 5 1.1.2.2 thorpej #define ULTRIX_F_RDLCK 1 6 1.1.2.2 thorpej #define ULTRIX_F_WRLCK 2 7 1.1.2.2 thorpej #define ULTRIX_F_UNLCK 3 8 1.1.2.2 thorpej short l_whence; 9 1.1.2.2 thorpej long l_start; 10 1.1.2.2 thorpej long l_len; 11 1.1.2.2 thorpej int l_pid; 12 1.1.2.2 thorpej }; 13