2.9
[glibc/nacl-glibc.git] / hurd / hurd / ioctl.h
blobee156f02f955ab3bf52be76bb9147e1d6ab67c3c
1 /* User-registered handlers for specific `ioctl' requests.
2 Copyright (C) 1993,94,95,96,97,2000,01 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #ifndef _HURD_IOCTL_H
21 #define _HURD_IOCTL_H 1
23 #define __need___va_list
24 #include <stdarg.h>
25 #include <bits/ioctls.h>
28 /* Type of handler function, called like ioctl to do its entire job. */
29 typedef int (*ioctl_handler_t) (int fd, int request, void *arg);
31 /* Structure that records an ioctl handler. */
32 struct ioctl_handler
34 /* Range of handled _IOC_NOTYPE (REQUEST) values. */
35 int first_request, last_request;
37 /* Handler function, called like ioctl to do its entire job. */
38 ioctl_handler_t handler;
40 struct ioctl_handler *next; /* Next handler. */
44 /* Register HANDLER to handle ioctls with REQUEST values between
45 FIRST_REQUEST and LAST_REQUEST inclusive. Returns zero if successful.
46 Return nonzero and sets `errno' for an error. */
48 extern int hurd_register_ioctl_handler (int first_request, int last_request,
49 ioctl_handler_t handler);
52 /* Define a library-internal handler for ioctl commands between FIRST and
53 LAST inclusive. The last element gratuitously references HANDLER to
54 avoid `defined but not used' warnings. */
56 #define _HURD_HANDLE_IOCTLS_1(handler, first, last, moniker) \
57 static const struct ioctl_handler handler##_ioctl_handler##moniker \
58 __attribute__ ((__unused__)) = \
59 { _IOC_NOTYPE (first), _IOC_NOTYPE (last), \
60 (int (*) (int, int, void *)) (handler), NULL }; \
61 text_set_element (_hurd_ioctl_handler_lists, \
62 handler##_ioctl_handler##moniker)
63 #define _HURD_HANDLE_IOCTLS(handler, first, last) \
64 _HURD_HANDLE_IOCTLS_1 (handler, first, last, first##_to_##last)
66 /* Define a library-internal handler for a single ioctl command. */
68 #define _HURD_HANDLE_IOCTL(handler, ioctl) \
69 _HURD_HANDLE_IOCTLS_1 (handler, ioctl, ioctl, ioctl##_only)
72 /* Lookup the handler for the given ioctl request. */
74 ioctl_handler_t _hurd_lookup_ioctl_handler (int request);
77 #endif /* hurd/ioctl.h */