klm_prot.x (9524e274b5484ac8b43bacd90d4029183ccf6476) | klm_prot.x (5b31cc94b10d4bb7109c6b27940a0fc76a44a331) |
---|---|
1/*- 2 * Copyright (c) 2010, Oracle America, Inc. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: 7 * 8 * * Redistributions of source code must retain the above copyright --- 24 unchanged lines hidden (view full) --- 33 * Kernel/lock manager protocol definition 34 * Copyright (C) 1986 Sun Microsystems, Inc. 35 * 36 * protocol used between the UNIX kernel (the "client") and the 37 * local lock manager. The local lock manager is a daemon running 38 * above the kernel. 39 */ 40 | 1/*- 2 * Copyright (c) 2010, Oracle America, Inc. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: 7 * 8 * * Redistributions of source code must retain the above copyright --- 24 unchanged lines hidden (view full) --- 33 * Kernel/lock manager protocol definition 34 * Copyright (C) 1986 Sun Microsystems, Inc. 35 * 36 * protocol used between the UNIX kernel (the "client") and the 37 * local lock manager. The local lock manager is a daemon running 38 * above the kernel. 39 */ 40 |
41#ifndef RPC_HDR 42%#ifndef lint 43%/*static char sccsid[] = "from: @(#)klm_prot.x 1.7 87/07/08 Copyr 1987 Sun Micro";*/ 44%/*static char sccsid[] = "from: @(#)klm_prot.x 2.1 88/08/01 4.0 RPCSRC";*/ 45%#endif /* not lint */ 46%#include <sys/cdefs.h> 47#endif 48 | |
49const LM_MAXSTRLEN = 1024; 50 51/* 52 * lock manager status returns 53 */ 54enum klm_stats { 55 klm_granted = 0, /* lock is granted */ 56 klm_denied = 1, /* lock is denied */ --- 84 unchanged lines hidden --- | 41const LM_MAXSTRLEN = 1024; 42 43/* 44 * lock manager status returns 45 */ 46enum klm_stats { 47 klm_granted = 0, /* lock is granted */ 48 klm_denied = 1, /* lock is denied */ --- 84 unchanged lines hidden --- |