4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright (c) 1996-2001 by Sun Microsystems, Inc.
24 * All rights reserved.
27 /* Copyright (c) 1988 AT&T */
28 /* All Rights Reserved */
31 #pragma ident "%Z%%M% %I% %E% SMI"
36 #include <unistd.h> /* alarm() */
40 static struct flock flock
= {
50 * yplckpwdf() returns a 0 for a successful lock within W_WAITTIME
54 static int fildes
= -1;
55 extern char lockfile
[];
67 if ((fildes
= creat(lockfile
, 0600)) == -1)
70 flock
.l_type
= F_WRLCK
;
71 (void) sigset(SIGALRM
, almhdlr
);
72 (void) alarm(S_WAITTIME
);
73 retval
= fcntl(fildes
, F_SETLKW
, (int)&flock
);
75 (void) sigset(SIGALRM
, SIG_DFL
);
81 * ypulckpwdf() returns 0 for a successful unlock and -1 otherwise
89 flock
.l_type
= F_UNLCK
;
90 (void) fcntl(fildes
, F_SETLK
, (int)&flock
);