blob: 475583e42f724256fcef8dd2a1c411b891c398c4 [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef __UNIX_DIAG_H__
20#define __UNIX_DIAG_H__
21#include <linux/types.h>
22struct unix_diag_req {
23/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24 __u8 sdiag_family;
25 __u8 sdiag_protocol;
26 __u16 pad;
27 __u32 udiag_states;
28/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29 __u32 udiag_ino;
30 __u32 udiag_show;
31 __u32 udiag_cookie[2];
32};
33/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34#define UDIAG_SHOW_NAME 0x00000001
35#define UDIAG_SHOW_VFS 0x00000002
36#define UDIAG_SHOW_PEER 0x00000004
37#define UDIAG_SHOW_ICONS 0x00000008
38/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39#define UDIAG_SHOW_RQLEN 0x00000010
40#define UDIAG_SHOW_MEMINFO 0x00000020
41struct unix_diag_msg {
42 __u8 udiag_family;
43/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44 __u8 udiag_type;
45 __u8 udiag_state;
46 __u8 pad;
47 __u32 udiag_ino;
48/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49 __u32 udiag_cookie[2];
50};
51enum {
52 UNIX_DIAG_NAME,
53/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54 UNIX_DIAG_VFS,
55 UNIX_DIAG_PEER,
56 UNIX_DIAG_ICONS,
57 UNIX_DIAG_RQLEN,
58/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59 UNIX_DIAG_MEMINFO,
60 UNIX_DIAG_SHUTDOWN,
61 __UNIX_DIAG_MAX,
62};
63/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64#define UNIX_DIAG_MAX (__UNIX_DIAG_MAX - 1)
65struct unix_diag_vfs {
66 __u32 udiag_vfs_ino;
67 __u32 udiag_vfs_dev;
68/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69};
70struct unix_diag_rqlen {
71 __u32 udiag_rqueue;
72 __u32 udiag_wqueue;
73/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
74};
75#endif