1 /* Open File Description Locks Usage Example
2 Copyright (C) 1991-2024 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>.
20 #include <sys/types.h>
26 #define FILENAME "/tmp/foo"
31 thread_start (void *arg
)
34 long tid
= (long) arg
;
42 fd
= open ("/tmp/foo", O_RDWR
| O_CREAT
, 0666);
44 for (i
= 0; i
< ITERATIONS
; i
++)
47 fcntl (fd
, F_OFD_SETLKW
, &lck
);
49 len
= sprintf (buf
, "%d: tid=%ld fd=%d\n", i
, tid
, fd
);
51 lseek (fd
, 0, SEEK_END
);
56 fcntl (fd
, F_OFD_SETLK
, &lck
);
58 /* sleep to ensure lock is yielded to another thread */
65 main (int argc
, char **argv
)
68 pthread_t threads
[NUM_THREADS
];
70 truncate (FILENAME
, 0);
72 for (i
= 0; i
< NUM_THREADS
; i
++)
73 pthread_create (&threads
[i
], NULL
, thread_start
, (void *) i
);