cnproc 0.2.1

A Rust API to access the Linux Process Events Connector via netlink sockets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
/* automatically generated by rust-bindgen */

#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, unused)]use libc::*;
type __be16 = u16;
type __be32 = u32;
type __be64 = u64;

#[repr(C)]
#[derive(Default)]
pub struct __IncompleteArrayField<T>(::core::marker::PhantomData<T>, [T; 0]);
impl<T> __IncompleteArrayField<T> {
    #[inline]
    pub const fn new() -> Self {
        __IncompleteArrayField(::core::marker::PhantomData, [])
    }
    #[inline]
    pub fn as_ptr(&self) -> *const T {
        self as *const _ as *const T
    }
    #[inline]
    pub fn as_mut_ptr(&mut self) -> *mut T {
        self as *mut _ as *mut T
    }
    #[inline]
    pub unsafe fn as_slice(&self, len: usize) -> &[T] {
        ::core::slice::from_raw_parts(self.as_ptr(), len)
    }
    #[inline]
    pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] {
        ::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len)
    }
}
impl<T> ::core::fmt::Debug for __IncompleteArrayField<T> {
    fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
        fmt.write_str("__IncompleteArrayField")
    }
}
pub const __BITS_PER_LONG: u32 = 64;
pub const __FD_SETSIZE: u32 = 1024;
pub const CN_IDX_PROC: u32 = 1;
pub const CN_VAL_PROC: u32 = 1;
pub const CN_IDX_CIFS: u32 = 2;
pub const CN_VAL_CIFS: u32 = 1;
pub const CN_W1_IDX: u32 = 3;
pub const CN_W1_VAL: u32 = 1;
pub const CN_IDX_V86D: u32 = 4;
pub const CN_VAL_V86D_UVESAFB: u32 = 1;
pub const CN_IDX_BB: u32 = 5;
pub const CN_DST_IDX: u32 = 6;
pub const CN_DST_VAL: u32 = 1;
pub const CN_IDX_DM: u32 = 7;
pub const CN_VAL_DM_USERSPACE_LOG: u32 = 1;
pub const CN_IDX_DRBD: u32 = 8;
pub const CN_VAL_DRBD: u32 = 1;
pub const CN_KVP_IDX: u32 = 9;
pub const CN_KVP_VAL: u32 = 1;
pub const CN_VSS_IDX: u32 = 10;
pub const CN_VSS_VAL: u32 = 1;
pub const CN_NETLINK_USERS: u32 = 11;
pub const CONNECTOR_MAX_MSG_SIZE: u32 = 16384;
pub const SI_LOAD_SHIFT: u32 = 16;
pub const _K_SS_MAXSIZE: u32 = 128;
pub const NETLINK_ROUTE: u32 = 0;
pub const NETLINK_UNUSED: u32 = 1;
pub const NETLINK_USERSOCK: u32 = 2;
pub const NETLINK_FIREWALL: u32 = 3;
pub const NETLINK_SOCK_DIAG: u32 = 4;
pub const NETLINK_NFLOG: u32 = 5;
pub const NETLINK_XFRM: u32 = 6;
pub const NETLINK_SELINUX: u32 = 7;
pub const NETLINK_ISCSI: u32 = 8;
pub const NETLINK_AUDIT: u32 = 9;
pub const NETLINK_FIB_LOOKUP: u32 = 10;
pub const NETLINK_CONNECTOR: u32 = 11;
pub const NETLINK_NETFILTER: u32 = 12;
pub const NETLINK_IP6_FW: u32 = 13;
pub const NETLINK_DNRTMSG: u32 = 14;
pub const NETLINK_KOBJECT_UEVENT: u32 = 15;
pub const NETLINK_GENERIC: u32 = 16;
pub const NETLINK_SCSITRANSPORT: u32 = 18;
pub const NETLINK_ECRYPTFS: u32 = 19;
pub const NETLINK_RDMA: u32 = 20;
pub const NETLINK_CRYPTO: u32 = 21;
pub const NETLINK_SMC: u32 = 22;
pub const NETLINK_INET_DIAG: u32 = 4;
pub const MAX_LINKS: u32 = 32;
pub const NLM_F_REQUEST: u32 = 1;
pub const NLM_F_MULTI: u32 = 2;
pub const NLM_F_ACK: u32 = 4;
pub const NLM_F_ECHO: u32 = 8;
pub const NLM_F_DUMP_INTR: u32 = 16;
pub const NLM_F_DUMP_FILTERED: u32 = 32;
pub const NLM_F_ROOT: u32 = 256;
pub const NLM_F_MATCH: u32 = 512;
pub const NLM_F_ATOMIC: u32 = 1024;
pub const NLM_F_DUMP: u32 = 768;
pub const NLM_F_REPLACE: u32 = 256;
pub const NLM_F_EXCL: u32 = 512;
pub const NLM_F_CREATE: u32 = 1024;
pub const NLM_F_APPEND: u32 = 2048;
pub const NLM_F_NONREC: u32 = 256;
pub const NLM_F_CAPPED: u32 = 256;
pub const NLM_F_ACK_TLVS: u32 = 512;
pub const NLMSG_ALIGNTO: u32 = 4;
pub const NLMSG_NOOP: u32 = 1;
pub const NLMSG_ERROR: u32 = 2;
pub const NLMSG_DONE: u32 = 3;
pub const NLMSG_OVERRUN: u32 = 4;
pub const NLMSG_MIN_TYPE: u32 = 16;
pub const NETLINK_ADD_MEMBERSHIP: u32 = 1;
pub const NETLINK_DROP_MEMBERSHIP: u32 = 2;
pub const NETLINK_PKTINFO: u32 = 3;
pub const NETLINK_BROADCAST_ERROR: u32 = 4;
pub const NETLINK_NO_ENOBUFS: u32 = 5;
pub const NETLINK_RX_RING: u32 = 6;
pub const NETLINK_TX_RING: u32 = 7;
pub const NETLINK_LISTEN_ALL_NSID: u32 = 8;
pub const NETLINK_LIST_MEMBERSHIPS: u32 = 9;
pub const NETLINK_CAP_ACK: u32 = 10;
pub const NETLINK_EXT_ACK: u32 = 11;
pub const NETLINK_GET_STRICT_CHK: u32 = 12;
pub const NL_MMAP_MSG_ALIGNMENT: u32 = 4;
pub const NET_MAJOR: u32 = 36;
pub const NLA_F_NESTED: u32 = 32768;
pub const NLA_F_NET_BYTEORDER: u32 = 16384;
pub const NLA_TYPE_MASK: i32 = -49153;
pub const NLA_ALIGNTO: u32 = 4;
pub type __s8 = libc::c_schar;
pub type __u8 = libc::c_uchar;
pub type __s16 = libc::c_short;
pub type __u16 = libc::c_ushort;
pub type __s32 = libc::c_int;
pub type __u32 = libc::c_uint;
pub type __s64 = libc::c_longlong;
pub type __u64 = libc::c_ulonglong;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct __kernel_fd_set {
    pub fds_bits: [libc::c_ulong; 16usize],
}
#[test]
fn bindgen_test_layout___kernel_fd_set() {
    assert_eq!(
        ::core::mem::size_of::<__kernel_fd_set>(),
        128usize,
        concat!("Size of: ", stringify!(__kernel_fd_set))
    );
    assert_eq!(
        ::core::mem::align_of::<__kernel_fd_set>(),
        8usize,
        concat!("Alignment of ", stringify!(__kernel_fd_set))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<__kernel_fd_set>())).fds_bits as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(__kernel_fd_set),
            "::",
            stringify!(fds_bits)
        )
    );
}
pub type __kernel_sighandler_t = ::core::option::Option<unsafe extern "C" fn(arg1: libc::c_int)>;
pub type __kernel_key_t = libc::c_int;
pub type __kernel_mqd_t = libc::c_int;
pub type __kernel_old_uid_t = libc::c_ushort;
pub type __kernel_old_gid_t = libc::c_ushort;
pub type __kernel_old_dev_t = libc::c_ulong;
pub type __kernel_long_t = libc::c_long;
pub type __kernel_ulong_t = libc::c_ulong;
pub type __kernel_ino_t = __kernel_ulong_t;
pub type __kernel_mode_t = libc::c_uint;
pub type __kernel_pid_t = libc::c_int;
pub type __kernel_ipc_pid_t = libc::c_int;
pub type __kernel_uid_t = libc::c_uint;
pub type __kernel_gid_t = libc::c_uint;
pub type __kernel_suseconds_t = __kernel_long_t;
pub type __kernel_daddr_t = libc::c_int;
pub type __kernel_uid32_t = libc::c_uint;
pub type __kernel_gid32_t = libc::c_uint;
pub type __kernel_size_t = __kernel_ulong_t;
pub type __kernel_ssize_t = __kernel_long_t;
pub type __kernel_ptrdiff_t = __kernel_long_t;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct __kernel_fsid_t {
    pub val: [libc::c_int; 2usize],
}
#[test]
fn bindgen_test_layout___kernel_fsid_t() {
    assert_eq!(
        ::core::mem::size_of::<__kernel_fsid_t>(),
        8usize,
        concat!("Size of: ", stringify!(__kernel_fsid_t))
    );
    assert_eq!(
        ::core::mem::align_of::<__kernel_fsid_t>(),
        4usize,
        concat!("Alignment of ", stringify!(__kernel_fsid_t))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<__kernel_fsid_t>())).val as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(__kernel_fsid_t),
            "::",
            stringify!(val)
        )
    );
}
pub type __kernel_off_t = __kernel_long_t;
pub type __kernel_loff_t = libc::c_longlong;
pub type __kernel_time_t = __kernel_long_t;
pub type __kernel_time64_t = libc::c_longlong;
pub type __kernel_clock_t = __kernel_long_t;
pub type __kernel_timer_t = libc::c_int;
pub type __kernel_clockid_t = libc::c_int;
pub type __kernel_caddr_t = *mut libc::c_char;
pub type __kernel_uid16_t = libc::c_ushort;
pub type __kernel_gid16_t = libc::c_ushort;
pub type __le16 = __u16;
pub type __le32 = __u32;
pub type __le64 = __u64;
pub type __sum16 = __u16;
pub type __wsum = __u32;
pub type __poll_t = libc::c_uint;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct cb_id {
    pub idx: __u32,
    pub val: __u32,
}
#[test]
fn bindgen_test_layout_cb_id() {
    assert_eq!(
        ::core::mem::size_of::<cb_id>(),
        8usize,
        concat!("Size of: ", stringify!(cb_id))
    );
    assert_eq!(
        ::core::mem::align_of::<cb_id>(),
        4usize,
        concat!("Alignment of ", stringify!(cb_id))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cb_id>())).idx as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(cb_id),
            "::",
            stringify!(idx)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cb_id>())).val as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(cb_id),
            "::",
            stringify!(val)
        )
    );
}
#[repr(C)]
#[derive(Debug)]
pub struct cn_msg {
    pub id: cb_id,
    pub seq: __u32,
    pub ack: __u32,
    pub len: __u16,
    pub flags: __u16,
    pub data: __IncompleteArrayField<__u8>,
}
#[test]
fn bindgen_test_layout_cn_msg() {
    assert_eq!(
        ::core::mem::size_of::<cn_msg>(),
        20usize,
        concat!("Size of: ", stringify!(cn_msg))
    );
    assert_eq!(
        ::core::mem::align_of::<cn_msg>(),
        4usize,
        concat!("Alignment of ", stringify!(cn_msg))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cn_msg>())).id as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(cn_msg),
            "::",
            stringify!(id)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cn_msg>())).seq as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(cn_msg),
            "::",
            stringify!(seq)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cn_msg>())).ack as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(cn_msg),
            "::",
            stringify!(ack)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cn_msg>())).len as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(cn_msg),
            "::",
            stringify!(len)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cn_msg>())).flags as *const _ as usize },
        18usize,
        concat!(
            "Offset of field: ",
            stringify!(cn_msg),
            "::",
            stringify!(flags)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<cn_msg>())).data as *const _ as usize },
        20usize,
        concat!(
            "Offset of field: ",
            stringify!(cn_msg),
            "::",
            stringify!(data)
        )
    );
}
#[repr(C)]
#[derive(Debug)]
pub struct sysinfo {
    pub uptime: __kernel_long_t,
    pub loads: [__kernel_ulong_t; 3usize],
    pub totalram: __kernel_ulong_t,
    pub freeram: __kernel_ulong_t,
    pub sharedram: __kernel_ulong_t,
    pub bufferram: __kernel_ulong_t,
    pub totalswap: __kernel_ulong_t,
    pub freeswap: __kernel_ulong_t,
    pub procs: __u16,
    pub pad: __u16,
    pub totalhigh: __kernel_ulong_t,
    pub freehigh: __kernel_ulong_t,
    pub mem_unit: __u32,
    pub _f: __IncompleteArrayField<libc::c_char>,
}
#[test]
fn bindgen_test_layout_sysinfo() {
    assert_eq!(
        ::core::mem::size_of::<sysinfo>(),
        112usize,
        concat!("Size of: ", stringify!(sysinfo))
    );
    assert_eq!(
        ::core::mem::align_of::<sysinfo>(),
        8usize,
        concat!("Alignment of ", stringify!(sysinfo))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).uptime as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(uptime)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).loads as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(loads)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).totalram as *const _ as usize },
        32usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(totalram)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).freeram as *const _ as usize },
        40usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(freeram)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).sharedram as *const _ as usize },
        48usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(sharedram)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).bufferram as *const _ as usize },
        56usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(bufferram)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).totalswap as *const _ as usize },
        64usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(totalswap)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).freeswap as *const _ as usize },
        72usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(freeswap)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).procs as *const _ as usize },
        80usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(procs)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).pad as *const _ as usize },
        82usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(pad)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).totalhigh as *const _ as usize },
        88usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(totalhigh)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).freehigh as *const _ as usize },
        96usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(freehigh)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>())).mem_unit as *const _ as usize },
        104usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(mem_unit)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sysinfo>()))._f as *const _ as usize },
        108usize,
        concat!(
            "Offset of field: ",
            stringify!(sysinfo),
            "::",
            stringify!(_f)
        )
    );
}
pub type __kernel_sa_family_t = libc::c_ushort;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct __kernel_sockaddr_storage {
    pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union __kernel_sockaddr_storage__bindgen_ty_1 {
    pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1,
    pub __align: *mut libc::c_void,
    _bindgen_union_align: [u64; 16usize],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1 {
    pub ss_family: __kernel_sa_family_t,
    pub __data: [libc::c_char; 126usize],
}
#[test]
fn bindgen_test_layout___kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1() {
    assert_eq!(
        ::core::mem::size_of::<__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1>(),
        128usize,
        concat!(
            "Size of: ",
            stringify!(__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1>(),
        2usize,
        concat!(
            "Alignment of ",
            stringify!(__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1>()))
                .ss_family as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1),
            "::",
            stringify!(ss_family)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1>()))
                .__data as *const _ as usize
        },
        2usize,
        concat!(
            "Offset of field: ",
            stringify!(__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1),
            "::",
            stringify!(__data)
        )
    );
}
#[test]
fn bindgen_test_layout___kernel_sockaddr_storage__bindgen_ty_1() {
    assert_eq!(
        ::core::mem::size_of::<__kernel_sockaddr_storage__bindgen_ty_1>(),
        128usize,
        concat!(
            "Size of: ",
            stringify!(__kernel_sockaddr_storage__bindgen_ty_1)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<__kernel_sockaddr_storage__bindgen_ty_1>(),
        8usize,
        concat!(
            "Alignment of ",
            stringify!(__kernel_sockaddr_storage__bindgen_ty_1)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<__kernel_sockaddr_storage__bindgen_ty_1>())).__align as *const _
                as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(__kernel_sockaddr_storage__bindgen_ty_1),
            "::",
            stringify!(__align)
        )
    );
}
#[test]
fn bindgen_test_layout___kernel_sockaddr_storage() {
    assert_eq!(
        ::core::mem::size_of::<__kernel_sockaddr_storage>(),
        128usize,
        concat!("Size of: ", stringify!(__kernel_sockaddr_storage))
    );
    assert_eq!(
        ::core::mem::align_of::<__kernel_sockaddr_storage>(),
        8usize,
        concat!("Alignment of ", stringify!(__kernel_sockaddr_storage))
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct sockaddr_nl {
    pub nl_family: __kernel_sa_family_t,
    pub nl_pad: libc::c_ushort,
    pub nl_pid: __u32,
    pub nl_groups: __u32,
}
#[test]
fn bindgen_test_layout_sockaddr_nl() {
    assert_eq!(
        ::core::mem::size_of::<sockaddr_nl>(),
        12usize,
        concat!("Size of: ", stringify!(sockaddr_nl))
    );
    assert_eq!(
        ::core::mem::align_of::<sockaddr_nl>(),
        4usize,
        concat!("Alignment of ", stringify!(sockaddr_nl))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sockaddr_nl>())).nl_family as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(sockaddr_nl),
            "::",
            stringify!(nl_family)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sockaddr_nl>())).nl_pad as *const _ as usize },
        2usize,
        concat!(
            "Offset of field: ",
            stringify!(sockaddr_nl),
            "::",
            stringify!(nl_pad)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sockaddr_nl>())).nl_pid as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(sockaddr_nl),
            "::",
            stringify!(nl_pid)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<sockaddr_nl>())).nl_groups as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(sockaddr_nl),
            "::",
            stringify!(nl_groups)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nlmsghdr {
    pub nlmsg_len: __u32,
    pub nlmsg_type: __u16,
    pub nlmsg_flags: __u16,
    pub nlmsg_seq: __u32,
    pub nlmsg_pid: __u32,
}
#[test]
fn bindgen_test_layout_nlmsghdr() {
    assert_eq!(
        ::core::mem::size_of::<nlmsghdr>(),
        16usize,
        concat!("Size of: ", stringify!(nlmsghdr))
    );
    assert_eq!(
        ::core::mem::align_of::<nlmsghdr>(),
        4usize,
        concat!("Alignment of ", stringify!(nlmsghdr))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlmsghdr>())).nlmsg_len as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(nlmsghdr),
            "::",
            stringify!(nlmsg_len)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlmsghdr>())).nlmsg_type as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(nlmsghdr),
            "::",
            stringify!(nlmsg_type)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlmsghdr>())).nlmsg_flags as *const _ as usize },
        6usize,
        concat!(
            "Offset of field: ",
            stringify!(nlmsghdr),
            "::",
            stringify!(nlmsg_flags)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlmsghdr>())).nlmsg_seq as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(nlmsghdr),
            "::",
            stringify!(nlmsg_seq)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlmsghdr>())).nlmsg_pid as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(nlmsghdr),
            "::",
            stringify!(nlmsg_pid)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nlmsgerr {
    pub error: libc::c_int,
    pub msg: nlmsghdr,
}
#[test]
fn bindgen_test_layout_nlmsgerr() {
    assert_eq!(
        ::core::mem::size_of::<nlmsgerr>(),
        20usize,
        concat!("Size of: ", stringify!(nlmsgerr))
    );
    assert_eq!(
        ::core::mem::align_of::<nlmsgerr>(),
        4usize,
        concat!("Alignment of ", stringify!(nlmsgerr))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlmsgerr>())).error as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(nlmsgerr),
            "::",
            stringify!(error)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlmsgerr>())).msg as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(nlmsgerr),
            "::",
            stringify!(msg)
        )
    );
}
pub const NLMSGERR_ATTR_UNUSED: nlmsgerr_attrs = 0;
pub const NLMSGERR_ATTR_MSG: nlmsgerr_attrs = 1;
pub const NLMSGERR_ATTR_OFFS: nlmsgerr_attrs = 2;
pub const NLMSGERR_ATTR_COOKIE: nlmsgerr_attrs = 3;
pub const __NLMSGERR_ATTR_MAX: nlmsgerr_attrs = 4;
pub const NLMSGERR_ATTR_MAX: nlmsgerr_attrs = 3;
pub type nlmsgerr_attrs = u32;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nl_pktinfo {
    pub group: __u32,
}
#[test]
fn bindgen_test_layout_nl_pktinfo() {
    assert_eq!(
        ::core::mem::size_of::<nl_pktinfo>(),
        4usize,
        concat!("Size of: ", stringify!(nl_pktinfo))
    );
    assert_eq!(
        ::core::mem::align_of::<nl_pktinfo>(),
        4usize,
        concat!("Alignment of ", stringify!(nl_pktinfo))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_pktinfo>())).group as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_pktinfo),
            "::",
            stringify!(group)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nl_mmap_req {
    pub nm_block_size: libc::c_uint,
    pub nm_block_nr: libc::c_uint,
    pub nm_frame_size: libc::c_uint,
    pub nm_frame_nr: libc::c_uint,
}
#[test]
fn bindgen_test_layout_nl_mmap_req() {
    assert_eq!(
        ::core::mem::size_of::<nl_mmap_req>(),
        16usize,
        concat!("Size of: ", stringify!(nl_mmap_req))
    );
    assert_eq!(
        ::core::mem::align_of::<nl_mmap_req>(),
        4usize,
        concat!("Alignment of ", stringify!(nl_mmap_req))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_req>())).nm_block_size as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_req),
            "::",
            stringify!(nm_block_size)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_req>())).nm_block_nr as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_req),
            "::",
            stringify!(nm_block_nr)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_req>())).nm_frame_size as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_req),
            "::",
            stringify!(nm_frame_size)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_req>())).nm_frame_nr as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_req),
            "::",
            stringify!(nm_frame_nr)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nl_mmap_hdr {
    pub nm_status: libc::c_uint,
    pub nm_len: libc::c_uint,
    pub nm_group: __u32,
    pub nm_pid: __u32,
    pub nm_uid: __u32,
    pub nm_gid: __u32,
}
#[test]
fn bindgen_test_layout_nl_mmap_hdr() {
    assert_eq!(
        ::core::mem::size_of::<nl_mmap_hdr>(),
        24usize,
        concat!("Size of: ", stringify!(nl_mmap_hdr))
    );
    assert_eq!(
        ::core::mem::align_of::<nl_mmap_hdr>(),
        4usize,
        concat!("Alignment of ", stringify!(nl_mmap_hdr))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_hdr>())).nm_status as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_hdr),
            "::",
            stringify!(nm_status)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_hdr>())).nm_len as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_hdr),
            "::",
            stringify!(nm_len)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_hdr>())).nm_group as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_hdr),
            "::",
            stringify!(nm_group)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_hdr>())).nm_pid as *const _ as usize },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_hdr),
            "::",
            stringify!(nm_pid)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_hdr>())).nm_uid as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_hdr),
            "::",
            stringify!(nm_uid)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nl_mmap_hdr>())).nm_gid as *const _ as usize },
        20usize,
        concat!(
            "Offset of field: ",
            stringify!(nl_mmap_hdr),
            "::",
            stringify!(nm_gid)
        )
    );
}
pub const NL_MMAP_STATUS_UNUSED: nl_mmap_status = 0;
pub const NL_MMAP_STATUS_RESERVED: nl_mmap_status = 1;
pub const NL_MMAP_STATUS_VALID: nl_mmap_status = 2;
pub const NL_MMAP_STATUS_COPY: nl_mmap_status = 3;
pub const NL_MMAP_STATUS_SKIP: nl_mmap_status = 4;
pub type nl_mmap_status = u32;
pub const NETLINK_UNCONNECTED: _bindgen_ty_1 = 0;
pub const NETLINK_CONNECTED: _bindgen_ty_1 = 1;
pub type _bindgen_ty_1 = u32;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nlattr {
    pub nla_len: __u16,
    pub nla_type: __u16,
}
#[test]
fn bindgen_test_layout_nlattr() {
    assert_eq!(
        ::core::mem::size_of::<nlattr>(),
        4usize,
        concat!("Size of: ", stringify!(nlattr))
    );
    assert_eq!(
        ::core::mem::align_of::<nlattr>(),
        2usize,
        concat!("Alignment of ", stringify!(nlattr))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlattr>())).nla_len as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(nlattr),
            "::",
            stringify!(nla_len)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nlattr>())).nla_type as *const _ as usize },
        2usize,
        concat!(
            "Offset of field: ",
            stringify!(nlattr),
            "::",
            stringify!(nla_type)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct nla_bitfield32 {
    pub value: __u32,
    pub selector: __u32,
}
#[test]
fn bindgen_test_layout_nla_bitfield32() {
    assert_eq!(
        ::core::mem::size_of::<nla_bitfield32>(),
        8usize,
        concat!("Size of: ", stringify!(nla_bitfield32))
    );
    assert_eq!(
        ::core::mem::align_of::<nla_bitfield32>(),
        4usize,
        concat!("Alignment of ", stringify!(nla_bitfield32))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nla_bitfield32>())).value as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(nla_bitfield32),
            "::",
            stringify!(value)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<nla_bitfield32>())).selector as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(nla_bitfield32),
            "::",
            stringify!(selector)
        )
    );
}
pub const PROC_CN_MCAST_LISTEN: proc_cn_mcast_op = 1;
pub const PROC_CN_MCAST_IGNORE: proc_cn_mcast_op = 2;
pub type proc_cn_mcast_op = u32;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct proc_event {
    pub what: proc_event_what,
    pub cpu: __u32,
    pub timestamp_ns: __u64,
    pub event_data: proc_event__bindgen_ty_1,
}
pub const PROC_EVENT_NONE: proc_event_what = 0;
pub const PROC_EVENT_FORK: proc_event_what = 1;
pub const PROC_EVENT_EXEC: proc_event_what = 2;
pub const PROC_EVENT_UID: proc_event_what = 4;
pub const PROC_EVENT_GID: proc_event_what = 64;
pub const PROC_EVENT_SID: proc_event_what = 128;
pub const PROC_EVENT_PTRACE: proc_event_what = 256;
pub const PROC_EVENT_COMM: proc_event_what = 512;
pub const PROC_EVENT_COREDUMP: proc_event_what = 1073741824;
pub const PROC_EVENT_EXIT: proc_event_what = 2147483648;
pub type proc_event_what = u32;
#[repr(C)]
#[derive(Copy, Clone)]
pub union proc_event__bindgen_ty_1 {
    pub ack: proc_event__bindgen_ty_1__bindgen_ty_1,
    pub fork: proc_event__bindgen_ty_1_fork_proc_event,
    pub exec: proc_event__bindgen_ty_1_exec_proc_event,
    pub id: proc_event__bindgen_ty_1_id_proc_event,
    pub sid: proc_event__bindgen_ty_1_sid_proc_event,
    pub ptrace: proc_event__bindgen_ty_1_ptrace_proc_event,
    pub comm: proc_event__bindgen_ty_1_comm_proc_event,
    pub coredump: proc_event__bindgen_ty_1_coredump_proc_event,
    pub exit: proc_event__bindgen_ty_1_exit_proc_event,
    _bindgen_union_align: [u32; 6usize],
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1__bindgen_ty_1 {
    pub err: __u32,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1__bindgen_ty_1() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1__bindgen_ty_1>(),
        4usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1__bindgen_ty_1)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1__bindgen_ty_1>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1__bindgen_ty_1)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1__bindgen_ty_1>())).err as *const _
                as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1__bindgen_ty_1),
            "::",
            stringify!(err)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1_fork_proc_event {
    pub parent_pid: __kernel_pid_t,
    pub parent_tgid: __kernel_pid_t,
    pub child_pid: __kernel_pid_t,
    pub child_tgid: __kernel_pid_t,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_fork_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_fork_proc_event>(),
        16usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_fork_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_fork_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_fork_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_fork_proc_event>())).parent_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_fork_proc_event),
            "::",
            stringify!(parent_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_fork_proc_event>())).parent_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_fork_proc_event),
            "::",
            stringify!(parent_tgid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_fork_proc_event>())).child_pid
                as *const _ as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_fork_proc_event),
            "::",
            stringify!(child_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_fork_proc_event>())).child_tgid
                as *const _ as usize
        },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_fork_proc_event),
            "::",
            stringify!(child_tgid)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1_exec_proc_event {
    pub process_pid: __kernel_pid_t,
    pub process_tgid: __kernel_pid_t,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_exec_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_exec_proc_event>(),
        8usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_exec_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_exec_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_exec_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exec_proc_event>())).process_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exec_proc_event),
            "::",
            stringify!(process_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exec_proc_event>())).process_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exec_proc_event),
            "::",
            stringify!(process_tgid)
        )
    );
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct proc_event__bindgen_ty_1_id_proc_event {
    pub process_pid: __kernel_pid_t,
    pub process_tgid: __kernel_pid_t,
    pub r: proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1,
    pub e: proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1 {
    pub ruid: __u32,
    pub rgid: __u32,
    _bindgen_union_align: u32,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1>(),
        4usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1>())).ruid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1),
            "::",
            stringify!(ruid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1>())).rgid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_1),
            "::",
            stringify!(rgid)
        )
    );
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2 {
    pub euid: __u32,
    pub egid: __u32,
    _bindgen_union_align: u32,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2>(),
        4usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2>())).euid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2),
            "::",
            stringify!(euid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2>())).egid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event__bindgen_ty_2),
            "::",
            stringify!(egid)
        )
    );
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_id_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_id_proc_event>(),
        16usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_id_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event>())).process_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event),
            "::",
            stringify!(process_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event>())).process_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event),
            "::",
            stringify!(process_tgid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event>())).r as *const _
                as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event),
            "::",
            stringify!(r)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_id_proc_event>())).e as *const _
                as usize
        },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_id_proc_event),
            "::",
            stringify!(e)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1_sid_proc_event {
    pub process_pid: __kernel_pid_t,
    pub process_tgid: __kernel_pid_t,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_sid_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_sid_proc_event>(),
        8usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_sid_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_sid_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_sid_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_sid_proc_event>())).process_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_sid_proc_event),
            "::",
            stringify!(process_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_sid_proc_event>())).process_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_sid_proc_event),
            "::",
            stringify!(process_tgid)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1_ptrace_proc_event {
    pub process_pid: __kernel_pid_t,
    pub process_tgid: __kernel_pid_t,
    pub tracer_pid: __kernel_pid_t,
    pub tracer_tgid: __kernel_pid_t,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_ptrace_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_ptrace_proc_event>(),
        16usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_ptrace_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_ptrace_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_ptrace_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_ptrace_proc_event>())).process_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_ptrace_proc_event),
            "::",
            stringify!(process_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_ptrace_proc_event>())).process_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_ptrace_proc_event),
            "::",
            stringify!(process_tgid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_ptrace_proc_event>())).tracer_pid
                as *const _ as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_ptrace_proc_event),
            "::",
            stringify!(tracer_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_ptrace_proc_event>())).tracer_tgid
                as *const _ as usize
        },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_ptrace_proc_event),
            "::",
            stringify!(tracer_tgid)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1_comm_proc_event {
    pub process_pid: __kernel_pid_t,
    pub process_tgid: __kernel_pid_t,
    pub comm: [libc::c_char; 16usize],
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_comm_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_comm_proc_event>(),
        24usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_comm_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_comm_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_comm_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_comm_proc_event>())).process_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_comm_proc_event),
            "::",
            stringify!(process_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_comm_proc_event>())).process_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_comm_proc_event),
            "::",
            stringify!(process_tgid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_comm_proc_event>())).comm as *const _
                as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_comm_proc_event),
            "::",
            stringify!(comm)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1_coredump_proc_event {
    pub process_pid: __kernel_pid_t,
    pub process_tgid: __kernel_pid_t,
    pub parent_pid: __kernel_pid_t,
    pub parent_tgid: __kernel_pid_t,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_coredump_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_coredump_proc_event>(),
        16usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_coredump_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_coredump_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_coredump_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_coredump_proc_event>())).process_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_coredump_proc_event),
            "::",
            stringify!(process_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_coredump_proc_event>())).process_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_coredump_proc_event),
            "::",
            stringify!(process_tgid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_coredump_proc_event>())).parent_pid
                as *const _ as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_coredump_proc_event),
            "::",
            stringify!(parent_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_coredump_proc_event>())).parent_tgid
                as *const _ as usize
        },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_coredump_proc_event),
            "::",
            stringify!(parent_tgid)
        )
    );
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct proc_event__bindgen_ty_1_exit_proc_event {
    pub process_pid: __kernel_pid_t,
    pub process_tgid: __kernel_pid_t,
    pub exit_code: __u32,
    pub exit_signal: __u32,
    pub parent_pid: __kernel_pid_t,
    pub parent_tgid: __kernel_pid_t,
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1_exit_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1_exit_proc_event>(),
        24usize,
        concat!(
            "Size of: ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event)
        )
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1_exit_proc_event>(),
        4usize,
        concat!(
            "Alignment of ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exit_proc_event>())).process_pid
                as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event),
            "::",
            stringify!(process_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exit_proc_event>())).process_tgid
                as *const _ as usize
        },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event),
            "::",
            stringify!(process_tgid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exit_proc_event>())).exit_code
                as *const _ as usize
        },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event),
            "::",
            stringify!(exit_code)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exit_proc_event>())).exit_signal
                as *const _ as usize
        },
        12usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event),
            "::",
            stringify!(exit_signal)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exit_proc_event>())).parent_pid
                as *const _ as usize
        },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event),
            "::",
            stringify!(parent_pid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1_exit_proc_event>())).parent_tgid
                as *const _ as usize
        },
        20usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1_exit_proc_event),
            "::",
            stringify!(parent_tgid)
        )
    );
}
#[test]
fn bindgen_test_layout_proc_event__bindgen_ty_1() {
    assert_eq!(
        ::core::mem::size_of::<proc_event__bindgen_ty_1>(),
        24usize,
        concat!("Size of: ", stringify!(proc_event__bindgen_ty_1))
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event__bindgen_ty_1>(),
        4usize,
        concat!("Alignment of ", stringify!(proc_event__bindgen_ty_1))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).ack as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(ack)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).fork as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(fork)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).exec as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(exec)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).id as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(id)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).sid as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(sid)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).ptrace as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(ptrace)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).comm as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(comm)
        )
    );
    assert_eq!(
        unsafe {
            &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).coredump as *const _ as usize
        },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(coredump)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event__bindgen_ty_1>())).exit as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event__bindgen_ty_1),
            "::",
            stringify!(exit)
        )
    );
}
#[test]
fn bindgen_test_layout_proc_event() {
    assert_eq!(
        ::core::mem::size_of::<proc_event>(),
        40usize,
        concat!("Size of: ", stringify!(proc_event))
    );
    assert_eq!(
        ::core::mem::align_of::<proc_event>(),
        8usize,
        concat!("Alignment of ", stringify!(proc_event))
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event>())).what as *const _ as usize },
        0usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event),
            "::",
            stringify!(what)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event>())).cpu as *const _ as usize },
        4usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event),
            "::",
            stringify!(cpu)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event>())).timestamp_ns as *const _ as usize },
        8usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event),
            "::",
            stringify!(timestamp_ns)
        )
    );
    assert_eq!(
        unsafe { &(*(::core::ptr::null::<proc_event>())).event_data as *const _ as usize },
        16usize,
        concat!(
            "Offset of field: ",
            stringify!(proc_event),
            "::",
            stringify!(event_data)
        )
    );
}