110 lines
3.4 KiB
Groff
110 lines
3.4 KiB
Groff
.\" $NetBSD: prop_dictionary_send_ioctl.3,v 1.1 2006/07/05 21:46:10 thorpej Exp $
|
|
.\"
|
|
.\" Copyright (c) 2006 The NetBSD Foundation, Inc.
|
|
.\" All rights reserved.
|
|
.\"
|
|
.\" This code is derived from software contributed to The NetBSD Foundation
|
|
.\" by Jason R. Thorpe.
|
|
.\"
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
.\" modification, are permitted provided that the following conditions
|
|
.\" are met:
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
|
.\" must display the following acknowledgement:
|
|
.\" This product includes software developed by the NetBSD
|
|
.\" Foundation, Inc. and its contributors.
|
|
.\" 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
.\" contributors may be used to endorse or promote products derived
|
|
.\" from this software without specific prior written permission.
|
|
.\"
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
.\"
|
|
.Dd July 3, 2006
|
|
.Dt PROP_DICTIONARY_SEND_IOCTL 9
|
|
.Os
|
|
.Sh NAME
|
|
.Nm prop_dictionary_send_ioctl ,
|
|
.Nm prop_dictionary_recv_ioctl
|
|
.Nd Send and receive propertly lists to and from the kernel using ioctl
|
|
.Sh SYNOPSIS
|
|
.In prop/proplib.h
|
|
.Ft int
|
|
.Fn prop_dictionary_send_ioctl "prop_dictionary_t dict" "int fd" \
|
|
"unsigned long cmd"
|
|
.Ft int
|
|
.Fn prop_dictionary_recv_ioctl "int fd" "unsigned long cmd" \
|
|
"prop_dictionary_t *dictp"
|
|
.Sh DESCRIPTION
|
|
The
|
|
.Nm prop_dictionary_send_ioctl
|
|
and
|
|
.Nm prop_dictionary_recv_ioctl
|
|
functions implement the user space side of a protocol for sending property
|
|
lists to and from the kernel using
|
|
.Xr ioctl 2 .
|
|
.Pp
|
|
The following
|
|
.Pq simplified
|
|
example demonstrates using
|
|
.Fn prop_dictionary_send_ioctl
|
|
and
|
|
.Fn prop_dictionary_receive_ioctl
|
|
in an application:
|
|
.Bd -literal
|
|
void
|
|
foo_setprops(prop_dictionary_t dict)
|
|
{
|
|
int fd;
|
|
|
|
fd = open("/dev/foo", O_RDWR, 0640);
|
|
if (fd == -1)
|
|
return;
|
|
|
|
(void) prop_dictionary_send_ioctl(dict, fd, FOOSETPROPS);
|
|
|
|
(void) close(fd);
|
|
}
|
|
|
|
prop_dictionary_t
|
|
foo_getprops(void)
|
|
{
|
|
prop_dictionary_t dict;
|
|
int fd;
|
|
|
|
fd = open("/dev/foo", O_RDONLY, 0640);
|
|
if (fd == -1)
|
|
return (NULL);
|
|
|
|
if (prop_dictionary_recv_ioctl(fd, FOOGETPROPS, &dict) != 0)
|
|
return (NULL);
|
|
|
|
(void) close(fd);
|
|
|
|
return (dict);
|
|
}
|
|
.Ed
|
|
.Sh SEE ALSO
|
|
.Xr prop_dictionary 3 ,
|
|
.Xr prop_dictionary_copyin_ioctl 9 ,
|
|
.Xr proplib 3
|
|
.Sh HISTORY
|
|
The
|
|
.Nm proplib
|
|
property container object library first appeared in
|
|
.Nx 4.0 .
|