4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
35 * --------------------------------------------------------------------
38 * Simply writing to a file and mmaping that file at the same time can
39 * result in deadlock. Nothing perverse like writing from the file's
40 * own mapping is required.
41 * --------------------------------------------------------------------
51 mmap(0, 8192, PROT_READ
, MAP_SHARED
, fd
, 0)) == MAP_FAILED
) {
56 if (mmap(addr
, 8192, PROT_READ
,
57 MAP_SHARED
|MAP_FIXED
, fd
, 0) == MAP_FAILED
) {
67 main(int argc
, char **argv
)
73 (void) printf("usage: %s <file name>\n", argv
[0]);
77 if ((fd
= open(argv
[1], O_RDWR
|O_CREAT
|O_TRUNC
, 0666)) == -1) {
82 if (pthread_create(NULL
, NULL
, mapper
, &fd
) != 0) {
83 perror("pthread_create");
87 if (write(fd
, buf
, sizeof (buf
)) == -1) {