From owner-freebsd-hackers@FreeBSD.ORG Sun Nov 16 03:43:44 2008 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5280A106567F for ; Sun, 16 Nov 2008 03:43:44 +0000 (UTC) (envelope-from bsd.quest@googlemail.com) Received: from po-out-1718.google.com (po-out-1718.google.com [72.14.252.152]) by mx1.freebsd.org (Postfix) with ESMTP id 2429A8FC08 for ; Sun, 16 Nov 2008 03:43:44 +0000 (UTC) (envelope-from bsd.quest@googlemail.com) Received: by po-out-1718.google.com with SMTP id y22so3351842pof.3 for ; Sat, 15 Nov 2008 19:43:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=1WQse7aAxgt3BIzrCITo9YzD/qw5NJwgEpTdzPBuRd4=; b=WY3egMkNhxMj6k8X0X69ka8V/G4kLys47Rcs0xgzreQWLbBFjdqAqAYW6gTFX21von zR8VoZLhyIsUfMZOlM39xN/3C5Aqutmn4au1QP+iCqt6UIKIDaHt4dT6jTHF/CP2Zjsh CVe61oWXuKG8xOqjLKfA3ONpomDJgsvekRHiU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=ct5M1NIJylLKYFhbGK9EmSS+xx+atqssRdiSGYP44h/UCJcBbnTZDBWQJW5iLKxKBH rm3neSuZPlu3S+UpjDMwEv70smXy/dcQ8dc6XBWOJLAilF44GDO3jBC8oLQK+ewsligy CWl8GETe5dRtVpIDmVyNmqyic2/Hw01i5Ahr4= Received: by 10.114.196.13 with SMTP id t13mr1633743waf.82.1226807023582; Sat, 15 Nov 2008 19:43:43 -0800 (PST) Received: by 10.114.201.14 with HTTP; Sat, 15 Nov 2008 19:43:43 -0800 (PST) Message-ID: <671bb5fc0811151943m7602476fy19e0f8ee75ea2377@mail.gmail.com> Date: Sun, 16 Nov 2008 04:42:43 +0059 From: "Alexej Sokolov" To: freebsd-hackers@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: vm_map_find X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Nov 2008 03:43:44 -0000 Hello, my question is about vm_map_find (9) int vm_map_find(vm_map_t map, vm_object_t object, vm_ooffset_t offset, vm_offset_t *addr, vm_size_t length, boolean_t find_space, vm_prot_t prot, vm_prot_t max, int cow); Could anyone explain what exactly parameter "cow" for ? Which values and meanings ? man page dives not enough informations about it. Thanks