1.\" 2.\" Copyright (c) 2016 John Baldwin <jhb@FreeBSD.org> 3.\" All rights reserved. 4.\" 5.\" Redistribution and use in source and binary forms, with or without 6.\" modification, are permitted provided that the following conditions 7.\" are met: 8.\" 1. Redistributions of source code must retain the above copyright 9.\" notice, this list of conditions and the following disclaimer. 10.\" 2. Redistributions in binary form must reproduce the above copyright 11.\" notice, this list of conditions and the following disclaimer in the 12.\" documentation and/or other materials provided with the distribution. 13.\" 14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24.\" SUCH DAMAGE. 25.\" 26.\" $FreeBSD$ 27.\" 28.Dd October 17, 2016 29.Dt sysdecode_fcntl_arg 3 30.Os 31.Sh NAME 32.Nm sysdecode_fcntl_arg , 33.Nm sysdecode_fcntl_arg_p 34.Nd output description of fcntl argument 35.Sh LIBRARY 36.Lb libsysdecode 37.Sh SYNOPSIS 38.In sys/types.h 39.In stdbool.h 40.In sysdecode.h 41.Ft void 42.Fn sysdecode_fcntl_arg "FILE *fp" "int cmd" "uintptr_t arg" "int base" 43.Ft bool 44.Fn sysdecode_fcntl_arg_p "int cmd" 45.Sh DESCRIPTION 46The 47.Fn sysdecode_fcntl_arg 48function outputs a text description of the optional 49.Fa arg 50argument to 51.Xr fcntl 2 52to the stream 53.Fa fp . 54The type and format of 55.Fa arg 56are determined by 57.Fa cmd : 58.Bl -column ".Dv F_SETLKW" "Vt struct flock *" 59.It Sy Command Ta Fa arg Sy Type Ta Sy Output Format 60.It 61.It Dv F_SETFD Ta Vt int Ta 62.Dq FD_CLOEXEC 63or the value of 64.Fa arg 65in the indicated 66.Fa base 67.Pq one of 8, 10, or 16 . 68.It 69.It Dv F_SETFL Ta Vt int Ta 70File flags as output by 71.Xr sysdecode_fcntl_fileflags 3 72with any unknown or remaining bits output in hexadecimal. 73.It 74.It Dv F_GETLK Ta Vt struct flock * Ta 75.It Dv F_SETLK Ta Vt struct flock * Ta 76.It Dv F_SETLKW Ta Vt struct flock * Ta 77The value of 78.Fa arg 79using the 80.Dq %p 81conversion specification. 82.It 83.It Others Ta Vt int Ta 84The value of 85.Fa arg 86in the indicated 87.Fa base 88.Pq one of 8, 10, or 16 . 89.El 90.Pp 91The 92.Fn sysdecode_fcntl_arg_p 93function can be used to determine if a 94.Xr fcntl 2 95command uses the optional third argument to 96.Xr fcntl 2 . 97The function returns 98.Dv true 99if 100.Fa cmd 101accepts a third argument to 102.Xr fcntl 2 103and 104.Dv false 105if it does not. 106.Sh RETURN VALUES 107The 108.Nm sysdecode_fcntl_arg_p 109function returns 110.Dv true 111if 112.Fa cmd 113accepts a third argument to 114.Xr fcntl 2 115and 116.Dv false 117if it does not. 118.Sh SEE ALSO 119.Xr sysdecode 3 , 120.Xr sysdecode_fcntl_cmd 3 , 121.Xr sysdecode_fcntl_fileflags 3 122