summaryrefslogtreecommitdiffstats
path: root/otherservice/event_library/library/include/other_service/ev_lib.h
blob: 6b87ea27bd15d781b6b785d89023a0a46e088963 (plain)
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
/*
 * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file ev_lib.h
 * @brief  \~english Event library -- API define head file
 */

#ifndef OTHERSERVICE_EV_LIB_H_  // NOLINT(build/header_guard)
#define OTHERSERVICE_EV_LIB_H_  // NOLINT(build/header_guard)

#include <agl_types_obsoluted.h>
#include <agldd/ev_common.h>
/** @addtogroup BaseSystem
 *  @{
 */
/** @addtogroup other_service
 *  @ingroup BaseSystem
 *  @{
 */
/** @addtogroup event_library
 *  @ingroup other_service
 *  @{
 */

#ifndef __KERNEL__

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/* Create/Delete flag and message queue */
/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_flag
/// \~english @par Brief
///       Create flag for event flag by the flag_id.
/// \~english @param [in] flag_id
///       EV_ID    - Flag ID of the flag event
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread.
/// \~english @retval EV_ERR_Exist Duplication Error
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id: The ID is not created by function of EV_moduleID_to_flagID().
///          - EV_ERR_Invalid_ID
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - flag_id registered in launch thread
///       - Flag corresponding to flag_id already exists
///          - EV_ERR_Exist
///       - Securing free space of thread information management table (malloc) Failure
///       - Flag pool is NULL
///       - Flag generation corresponding to flag_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Creates flag with ID specified by the argument.
///       An error occurs if flag of the specified ID already exists.
/// \~english @see  evk_open, evk_close, evk_ioctl, evk_create_flag, evk_set_poll
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_flag(EV_ID flag_id);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_flag64
/// \~english @par Brief
///       Create flag for event flag by the flag_id.
/// \~english @param [in] flag_id
///       EV_ID    - Flag ID of the flag event
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread.
/// \~english @retval EV_ERR_Exist Duplication Error
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id: The ID is not created by function of EV_moduleID_to_flag64ID ().
///          - EV_ERR_Invalid_ID
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - flag_id registered in launch thread
///       - Flag corresponding to flag_id already exists
///          - EV_ERR_Exist
///       - Securing free space of thread information management table (malloc) Failure
///       - Flag pool is NULL
///       - Flag generation corresponding to flag_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Creates flag with ID specified by the argument.
///       An error occurs if flag of the specified ID already exists.
/// \~english @see  evk_open, evk_close, evk_ioctl, evk_create_flag, evk_set_poll
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_flag64(EV_ID flag_id);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_queue
/// \~english @par Brief
///       Create message queue with the queue_id.
/// \~english @param [in] queue_id
///       EV_ID  - queue_id of message event
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [in] length
///       UINT8  - length of message queue (Maximum accumulated number of the messages)
/// \~english @param [in] max_bytes
///       UINT16  - the maximum number of bytes per 1 message(MAX 2048)
/// \~english @param [in] type
///       EV_Message_Queue_Type  - classification of the processing when the queue received more event
///                              - in the queue full state.
/// \~english @par
///       EV_Message_Queue_Type
/// \~english @code
///       typedef UINT8 EV_Message_Queue_Type;
///          -  EV_MESSAGE_QUEUE_TYPE_BUSY = 0  // Return error(EV_ERR_Busy) to origin of message transmission
///          -  EV_MESSAGE_QUEUE_TYPE_FIFO = 1  // Delete the top message of the queue, and shift message
///                                             // (Delete the oldest message)
///          -  EV_MESSAGE_QUEUE_TYPE_REPLACE = 2  // Overwrite the last message of the queue
///                                                // (Overwrite the newest message)
///        @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread.
/// \~english @retval EV_ERR_Exist Duplication Error
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id is not created by function of EV_moduleID_to_queueID ().
///          - EV_ERR_Invalid_ID
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - queue_id registered in launch thread
///       - Message queue corresponding to queue_id already exists
///          - EV_ERR_Exist
///       - Securing free space of thread information management table (malloc) Failure
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///       - Message queue pool is NULL
///       - Message queue generation corresponding to queue_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Creates message queue with ID specified by the argument.
///       When queue is created, a memory area corresponding to "length" x "max_bytes" is dynamically secured.
///       An error occurs if queue of the specified ID already exists.
/// \~english @see evk_open, evk_close, evk_ioctl, evk_create_message_queue, evk_set_poll
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_queue(EV_ID                queue_id,   // NOLINT (readability/nolint)
                      UINT8                 length,     // NOLINT (readability/nolint)
                      UINT16                max_bytes,  // NOLINT (readability/nolint)
                      EV_Message_Queue_Type type);      // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_flag_auto_id
/// \~english @par Brief
///       Automatically assign flag ID, and creates flag with flag ID.
/// \~english @param [out] flag_id
///       EV_ID*    - flag_id assigned automatically
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - Securing free space of thread information management table (malloc) Failure
///       - Flag pool is NULL
///       - Flag generation corresponding to flag_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Automatically assign flag ID, and creates flag with flag ID.
///       It is the same as "EV_create_flag" except that flag ID is automatically allocated.
/// \~english @see EV_create_flag, evk_open, evk_close, evk_ioctl, evk_create_flag, evk_alloc_flag_id, evk_set_poll
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_flag_auto_id(/* OUT */EV_ID *flag_id);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_flag64_auto_id
/// \~english @par Brief
///       Automatically assign flag ID, and creates flag with flag ID.
/// \~english @param [out] flag_id
///       EV_ID*    - flag_id assigned automatically
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - Securing free space of thread information management table (malloc) Failure
///       - Flag pool is NULL
///       - Flag generation corresponding to flag_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Automatically assign flag ID, and creates flag with flag ID.
///       It is the same as "EV_create_flag" except that flag ID is automatically allocated.
/// \~english @see EV_create_flag, evk_open, evk_close, evk_ioctl, evk_create_flag, evk_alloc_flag_id, evk_set_poll
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_flag64_auto_id(/* OUT */EV_ID *flag_id);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_queue_auto_id
/// \~english @par Brief
///       Automatically assign queue ID, and creates message queue with queue ID.
///                                         It stores queue_id assigned automatically in argument.
/// \~english @param [out] queue_id
///       EV_ID*  - queue_id assigned automatically
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [in] length
///       UINT8  - length of message queue (Maximum accumulated number of the messages)
/// \~english @param [in] max_bytes
///       UINT16  - the maximum number of bytes per 1 message(MAX 2048)
/// \~english @param [in] type
///       EV_Message_Queue_Type  - classification of the processing when the queue received more event
///                                in the queue full state.
/// \~english @par
///       EV_Message_Queue_Type
/// \~english @code
///       typedef UINT8 EV_Message_Queue_Type;
///          -  EV_MESSAGE_QUEUE_TYPE_BUSY = 0  // Return error(EV_ERR_Busy) to origin of message transmission
///          -  EV_MESSAGE_QUEUE_TYPE_FIFO = 1  // Delete the top message of the queue, and shift message
///                                             // (Delete the oldest message)
///          -  EV_MESSAGE_QUEUE_TYPE_REPLACE = 2  // Overwrite the last message of the queue
///                                                // (Overwrite the newest message)
///        @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Thread is unregistered and threads started up to the maximum of event thread(16 threads)
///          - EV_ERR_Thread_Over
///       - Message queue corresponding to queue_id already exists
///       - Securing free space of thread information management table (malloc) Failure
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///       - Message queue pool is NULL
///       - Message queue generation corresponding to queue_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Automatically assign queue id, and creates message queue with queue id, It stores queue_id
///       assigned automatically in argument.
///       It is the same as "EV_queue_flag" except that queue ID is automatically allocated.
/// \~english @see EV_create_queue, evk_open, evk_close, evk_ioctl, evk_create_message_queue,
///                evk_alloc_queueID, evk_set_poll
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_queue_auto_id(/* OUT */EV_ID       *queue_id,  // NOLINT (readability/nolint)
                              UINT8                 length,     // NOLINT (readability/nolint)
                              UINT16                max_bytes,  // NOLINT (readability/nolint)
                              EV_Message_Queue_Type type);      // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_destroy_flag
/// \~english @par Brief
///       Deletes flag with ID specified by the argument.
/// \~english @param [in] flag_id
///       EV_ID    - Flag ID of the flag event
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///       - Flag corresponding to queue_id doesn't exist
///          - EV_ERR_Invalid_ID
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Deletes flag with ID specified by the argument.
///       The user can only delete flag created by user process.
///       Due to deletion, program waiting for this flag (poll or wait) wakes up.
/// \~english @see evk_close, evk_ioctl, evk_destroy_queue
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_destroy_flag(EV_ID queue_id);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_destroy_queue
/// \~english @par Brief
///       Delete queue for message event by the queue_id.
/// \~english @param [in] queue_id
///       EV_ID    - queue_id of the message event
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_queue(),EV_create_queue_auto_id() and message queue has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///       - Message queue corresponding to flag_id doesn't exist
///          - EV_ERR_Invalid_ID
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Deletes message queue with ID specified by the argument.
///       The user can only delete message queue created by user process.
///       Due to deletion, program waiting for this message queue (poll or wait) wakes up.
/// \~english @see EV_destroy_flag, evk_close, evk_ioctl, evk_destroy_queue
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_destroy_queue(EV_ID queue_id);  // NOLINT (readability/nolint)

/* Send event */
/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_set_flag
/// \~english @par Brief
///       Set Event flag
/// \~english @param [in] flag_id
///       EV_ID    - Flag ID of the event flag
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [in] bits
///       UINT32      - event flag bit pattern
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id:The flag_id of event which has not been created.
///       - Flag corresponding to flag_id doesn't exist
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Sets bit pattern specified by argument to flag of ID specified by argument.
///       When setting a plurality of bit patterns in the same flag, "only OR
///       operation result of all bit patterns" is held in flag.
/// \~english @see evk_open, evk_close, evk_ioctl, evk_store_flag
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_set_flag(EV_ID flag_id, UINT32 bits);  // NOLINT (readability/nolint)

/* Send event */
/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_set_flag64
/// \~english @par Brief
///       Set Event flag
/// \~english @param [in] flag_id
///       EV_ID    - Flag ID of the event flag
/// \~english @par
///         EV_ID type parameter
///   @code

///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [in] bits
///       UINT32      - event flag bit pattern
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id:The flag_id of event which has not been created.
///       - Flag corresponding to flag_id doesn't exist
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Sets bit pattern specified by argument to flag of ID specified by argument.
///       When setting a plurality of bit patterns in the same flag, "only OR operation
///       result of all bit patterns" is held in flag.
/// \~english @see evk_open, evk_close, evk_ioctl, evk_store_flag
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_set_flag64(EV_ID flag_id, UINT64 bits);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_send_message
/// \~english @par Brief
///       Send Message event
/// \~english @param [in] queue_id
///       EV_ID    - Queue ID of the message destination
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [in] bytes
///       UINT16      - The bytes of the send message
/// \~english @param [in] message
///       const void *  - Pointer to a transmitting byte line
/// \~english @param [in] senderInfo
///       UINT32     - Message Source(It is specified when it is used for application identification.
///                    When do not use it, appoint 0.)
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Busy Queue overflow
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_queue(),EV_create_queue_auto_id() and message queue has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///       - Message queue corresponding to queue_id doesn't exist
///          - EV_ERR_Invalid_ID
///       - Queue overflow in kernel space
///          - EV_ERR_Busy
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///       - Invalid queue types
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Sends message specified by argument to message queue of ID specified by argument.
///       An error occurs when message queue of the specified ID doesn't exist or
///       message size exceeds the specified size.
///       When message queue is FULL, the processing differs depending on the type of message queue specified
///       at the time of creation message queue.
/// \~english @see evk_open, evk_close, evk_ioctl, evk_store_message
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_send_message(EV_ID      queue_id,     // NOLINT (readability/nolint)
                      UINT16      bytes,        // NOLINT (readability/nolint)
                      const void  *message,     // NOLINT (readability/nolint)
                      UINT32      senderInfo);  // NOLINT (readability/nolint)

/* \~english Get events in the order of arrivals */
////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_get_next_event
/* \~english get events by reaching time */
/// \~english @par Brief  get the first reached event(non-block)
/// \~english @param [out] ev
///       event Structure
/// \~english @par
///         EV_Event struct
///   @code
///             typedef unsigned int UINT32;
///             typedef UINT32 EV_Type;
///             typedef UINT32 EV_ID;
///             #define EV_MAX_MESSAGE_LENGTH 2048
///             enum ev_message_queue_type {
///               EV_MESSAGE_QUEUE_TYPE_BUSY,
///               EV_MESSAGE_QUEUE_TYPE_FIFO,
///               EV_MESSAGE_QUEUE_TYPE_REPLACE,
///             };
///
///             typedef struct {
///               EV_ID flagID;
///               UINT32 bits;
///             } EV_Flag;
///
///             typedef struct {
///               EV_ID flagID;
///               UINT64 bits;
///             } EV_Flag64;
///
///             typedef struct {
///              EV_ID queueID;
///               UINT32 senderInfo;
///               UINT32 length;
///               UINT32 dummy;
///               UINT8  message[EV_MAX_MESSAGE_LENGTH];
///             } EV_Message;
///
///             typedef struct {
///               EV_Type type;  // please reference  ev_message_queue_type.
///               union {
///                 EV_Flag flag;
///                 EV_Flag64 flag64;
///                 EV_Message message;
///               } u;
///             } EV_Event;
///
///         @endcode

/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_Thread: unregistered thread
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///       - unregistered thread
///          - EV_ERR_Invalid_Thread
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   Get the first reached event which occurred for
///   flags or message queues created in current process.
///   If there is no event, set ev->type to EV_EVENT_None, then return immediately.
///   The event is flag or message is decided by
///   the ev->type is EV_EVENT_Flag or EV_EVENT_Message.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_get_next_event(/* OUT */EV_Event *ev);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_peek_next_event
/// \~english @par Brief  get the first reached event(non-destructive)
/// \~english @param [out] ev
///       event Structure
///   @code
///             typedef unsigned int UINT32;
///             typedef UINT32 EV_Type;
///             typedef UINT32 EV_ID;
///             #define EV_MAX_MESSAGE_LENGTH 2048
///             enum ev_message_queue_type {
///               EV_MESSAGE_QUEUE_TYPE_BUSY,
///               EV_MESSAGE_QUEUE_TYPE_FIFO,
///               EV_MESSAGE_QUEUE_TYPE_REPLACE,
///             };
///
///             typedef struct {
///               EV_ID flagID;
///               UINT32 bits;
///             } EV_Flag;
///
///             typedef struct {
///               EV_ID flagID;
///               UINT64 bits;
///             } EV_Flag64;
///
///             typedef struct {
///              EV_ID queueID;
///               UINT32 senderInfo;
///               UINT32 length;
///               UINT32 dummy;
///               UINT8  message[EV_MAX_MESSAGE_LENGTH];
///             } EV_Message;
///
///             typedef struct {
///               EV_Type type;  // please reference  ev_message_queue_type.
///               union {
///                 EV_Flag flag;
///                 EV_Flag64 flag64;
///                 EV_Message message;
///               } u;
///             } EV_Event;
///
///         @endcode
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_Thread: unregistered thread
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///       - unregistered thread
///          - EV_ERR_Invalid_Thread
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   Get the first reached event which occurred for
///   flags or message queues created in current process non-destructively.
///   If the event is not getted from other processes, then call the function of
///   EV_get_next_event() or EV_peek_next_event(), it will return a same event.
///   If there is no event, set ev->type to EV_EVENT_None, then return immediately.
///   The event is flag or message is decided by
///   ev->type is EV_EVENT_Flag or EV_EVENT_Message.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_peek_next_event(/* OUT */EV_Event *ev);  // NOLINT (readability/nolint)

/* Get eventflag (ID specified) */
/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_get_flag
/// \~english @par Brief
///       Get event flag(non-block)
/// \~english @param [in] flag_id
///       EV_ID  - Flag ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] flag
///       EV_Flag * - event flag structure
/// \~english @par
///       EV_Flag structure
/// \~english @code
///       typedef struct {
///         EV_ID flagID;  // Flag ID
///         UINT32 bits;   // event flag bit pattern
///       } EV_Flag;
///       @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Flag corresponding to flag_id doesn't exist
///       --incorrect flag_id:The flag_id of event which has not been created.
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets bit pattern specified by argument to flag of ID specified by argument.
///       The user can only get flag created by user process, and clear bit pattern of acquired flag.
///       An error occurs if flag of the specified ID doesn't exist.
/// \~english @see
///       evk_ioctl, evk_get_event
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_get_flag(EV_ID flag_id, /* OUT */EV_Flag *flag);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_wait_flag
/// \~english @par Brief
///       Get event flag(block)
/// \~english @param [in] flag_id
///       EV_ID  - Flag ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] flag
///       EV_Flag * - event flag structure
/// \~english @par
///       EV_Flag structure
/// \~english @code
///       typedef struct {
///         EV_ID flagID;  // Flag ID
///         UINT32 bits;   // event flag bit pattern
///       } EV_Flag;
///       @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Interrupted signal interrupt
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Flag corresponding to flag_id doesn't exist
///       --incorrect flag_id:The flag_id of event which has not been created.
///          - EV_ERR_Invalid_ID
///       - Task blocking was canceled by signal interrupt
///          - EV_ERR_Interrupted
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets bit pattern specified by argument to flag of ID specified by argument.
///       The user can only get flag created by user process, and clear bit pattern of acquired flag.
///       An error occurs if flag of the specified ID doesn't exist.
///       If bit pattern is not set in flag, block until bit pattern is set.
///       However, if a signal interrupt or corresponding flag is deleted, it will abort and return an error.
/// \~english @see
///       evk_ioctl, evk_get_event
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_wait_flag(EV_ID flag_id, /* OUT */EV_Flag *flag);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_peek_flag
/// \~english @par Brief get flag event(non-destructive)
/// \~english @param  [in] flag_id
///       ID of message event queue
/// \~english @param  [out] flag
///       flag struct
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @par
///         EV_Flag Structure
///   @code
///         typedef struct {
///         EV_ID flagID;
///           UINT32 bits;
///         } EV_Flag;
///         @endcode
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: The specified flag ID is not existing,
///   or it is not created in current process.
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Flag corresponding to flag_id doesn't exist
///       --incorrect flag_id:The flag_id of event which has not been created.
///          - EV_ERR_Invalid_ID
///       - Task blocking was canceled by signal interrupt
///          - EV_ERR_Interrupted
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   Get a flag event whose ID is specified non-destructively.
///   If there is no event, just return.
///   If there is no event, set flag->flagID to EV_NO_ID.
///   You can judge that there is no event, even though flag->bits is 0.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_peek_flag(EV_ID flag_id, /* OUT */EV_Flag *flag);  // NOLINT (readability/nolint)

/* Get eventflag (ID specified) */
/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_get_flag64
/// \~english @par Brief
///       Get event flag(non-block)
/// \~english @param [in] flag_id
///       EV_ID  - Flag ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] flag
///       EV_Flag * - event flag structure
/// \~english @par
///       EV_Flag structure
/// \~english @code
///       typedef unsigned int UINT32;
///       typedef UINT32 EV_ID
///
///       typedef struct {
///         EV_ID flagID;  // Flag ID
///         UINT32 bits;   // event flag bit pattern
///       } EV_Flag;
///       @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Flag corresponding to flag_id doesn't exist
///       --incorrect flag_id:The flag_id of event which has not been created.
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets bit pattern specified by argument to flag of ID specified by argument.
///       The user can only get flag created by user process, and clear bit pattern of acquired flag.
///       An error occurs if flag of the specified ID doesn't exist.
/// \~english @see
///       evk_ioctl, evk_get_event
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_get_flag64(EV_ID flag_id, /* OUT */EV_Flag64 *flag);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_wait_flag64
/// \~english @par Brief
///       Get event flag(block)
/// \~english @param [in] flag_id
///       EV_ID  - Flag ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] flag
///       EV_Flag * - event flag structure
/// \~english @par
///       EV_Flag structure
/// \~english @code
///       typedef unsigned int UINT32;
///       typedef UINT32 EV_ID
///
///       typedef struct {
///         EV_ID flagID;  // Flag ID
///         UINT32 bits;   // event flag bit pattern
///       } EV_Flag;
///       @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Interrupted signal interrupt
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Flag corresponding to flag_id doesn't exist
///       --incorrect flag_id:The flag_id of event which has not been created.
///          - EV_ERR_Invalid_ID
///       - Task blocking was canceled by signal interrupt
///          - EV_ERR_Interrupted
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets bit pattern specified by argument to flag of ID specified by argument.
///       The user can only get flag created by user process, and clear bit pattern of acquired flag.
///       An error occurs if flag of the specified ID doesn't exist.
///       If bit pattern is not set in flag, block until bit pattern is set.
///       However, if a signal interrupt or corresponding flag is deleted, it will abort and return an error.
/// \~english @see
///       evk_ioctl, evk_get_event
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_wait_flag64(EV_ID flag_id, /* OUT */EV_Flag64 *flag);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_peek_flag64
/// \~english @par Brief get flag event(non-destructive)
/// \~english @param  [in] flag_id
///       ID of message event queue
/// \~english @param  [out] flag
///       flag struct
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @par
///         EV_Flag Structure
///   @code
///         typedef struct {
///         EV_ID flagID;
///           UINT32 bits;
///         } EV_Flag;
///         @endcode
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: The specified flag ID is not existing,
///   or it is not created in current process.
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Flag corresponding to flag_id doesn't exist
///       --incorrect flag_id:The flag_id of event which has not been created.
///          - EV_ERR_Invalid_ID
///       - Task blocking was canceled by signal interrupt
///          - EV_ERR_Interrupted
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   Get a flag event whose ID is specified non-destructively.
///   If there is no event, just return.
///   If there is no event, set flag->flagID to EV_NO_ID.
///   You can judge that there is no event, even though flag->bits is 0.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_peek_flag64(EV_ID flag_id, /* OUT */EV_Flag64 *flag);  // NOLINT (readability/nolint)

/* Get Message Event (ID specified) */
/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_get_message
/// \~english @par Brief
///       Get message event(non-block)
/// \~english @param [in] queue_id
///       EV_ID  - Message queue ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] message
///       EV_Message * - Message event structure
/// \~english @par
///       EV_Message structure
/// \~english @code
///       typedef unsigned int UINT32;
///       typedef UINT32 EV_ID
///
///       #define EV_MAX_MESSAGE_LENGTH 2048
///       typedef struct {
///         EV_ID queueID;  // ID of message queue
///         UINT32 senderInfo;  // Message Source
///         UINT32 length;  // length of message
///         UINT32 dummy;  // dummy for padding
///         UINT8  message[EV_MAX_MESSAGE_LENGTH];  // message
///       } EV_Message;
///       @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_queue(),EV_create_queue_auto_id() and message queue has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Message queue corresponding to queue_id doesn't exist
///       --incorrect queue_id:The queue_id of essage which has not been created.
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets 1 message specified by argument to message queue of ID specified by argument.
///       The user can only get message queue created by user process, and clear 1 message of acquired message queue.
///       An error occurs if message queue of the specified ID doesn't exist.
/// \~english @see
///       evk_ioctl, evk_get_event
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_get_message(EV_ID queue_id, /* OUT */EV_Message *message);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_wait_message
/// \~english @par Brief
///       Get message event(block)
/// \~english @param [in] queue_id
///       EV_ID  - Message queue ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] message
///       EV_Message * - Message event structure
/// \~english @par
///       EV_Message structure
/// \~english @code
///       typedef unsigned int UINT32;
///       typedef UINT32 EV_ID
///
///       #define EV_MAX_MESSAGE_LENGTH 2048
///       typedef struct {
///         EV_ID queueID;  // ID of message queue
///         UINT32 senderInfo;  // Message Source
///         UINT32 length;  // length of message
///         UINT32 dummy;  // dummy for padding
///         UINT8  message[EV_MAX_MESSAGE_LENGTH];  // message
///       } EV_Message;
///       @endcode
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Interrupted signal interrupt
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_queue(),EV_create_queue_auto_id() and message queue has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Message queue corresponding to queue_id doesn't exist
///       --incorrect queue_id:The queue_id of essage which has not been created.
///          - EV_ERR_Invalid_ID
///       - Task blocking was canceled by signal interrupt
///          - EV_ERR_Interrupted
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets 1 message specified by argument to message queue of ID specified by argument.
///       The user can only get message queue created by user process, and clear 1 message of acquired message queue.
///       An error occurs if message queue of the specified ID doesn't exist.
///       If message is not set in message queue, block until message is sent.
///       However, if a signal interrupt or corresponding message queue is deleted, it will abort and return an error.
/// \~english @see
///       evk_ioctl, evk_get_event
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_wait_message(EV_ID queue_id, /* OUT */EV_Message *message);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_peek_message
/// \~english @par Brief  get message event(non-destructive)
/// \~english @param  [in] queue_id
///       ID of message event queue
/// \~english @param  [out] message
///       message event queue struct
/// \~english @par
///         EV_ID define
///   @code
///         typedef UINT32 EV_ID
///         @endcode

/// \~english @par
///         EV_Message struct
///   @code
///         #define EV_MAX_MESSAGE_LENGTH 2048
///         typedef struct {
///            EV_ID queueID;
///            UINT32 senderInfo;
///            UINT32 length;
///            UINT32 dummy;
///            UINT8  message[EV_MAX_MESSAGE_LENGTH];
///          } EV_Message;
///         @endcode
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: The specified queue ID is not existing,
///   or it is not created in current process.
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Message queue corresponding to queue_id doesn't exist
///       --incorrect queue_id:The queue_id of essage which has not been created.
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   Get a message event queue whose ID is specified non-destructively.
///   If there is no event, just return.
///   If there is no event, set message->queueID to EV_NO_ID.
///   It is the same with EV_get_message(), except the message is remained in the queue.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_peek_message(EV_ID queue_id, /* OUT */EV_Message *message);  // NOLINT (readability/nolint)

/* \~english Get events(with search criteria) */

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_find_message_by_sender
/* \~english get event(with search sender infomation condition) */
/// \~english @param  [in] queue_id
///       ID of message event queue
/// \~english @param  [in] senderInfo
///       sender information
/// \~english @param  [out] message
///       message event struct
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @par
///         EV_Message struct
///   @code
///         #define EV_MAX_MESSAGE_LENGTH 2048
///         typedef struct {
///            EV_ID queueID;
///            UINT32 senderInfo;
///            UINT32 length;
///            UINT32 dummy;
///            UINT8  message[EV_MAX_MESSAGE_LENGTH];
///          } EV_Message;
///         @endcode
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: The specified queue ID is not existing,
///   or it is not created in current process.
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///       - Not find same sender information's message according to input sender information information
///          - EV_ERR_Invalid_ID
///       - Securing free space of thread information management table (malloc) Failure
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///       - Message queue pool is NULL
///       - Message queue generation corresponding to queue_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   If there is a event whose sender information is same with
///   any event in message event queue whose ID is specified, get the event and delete it from queue.
///   If such a message is not existing,
///   set message->queueID to EV_NO_ID, then return.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_find_message_by_sender(EV_ID queue_id, UINT32 senderInfo, EV_Message *message);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_find_message_by_content
/// \~english @par Brief  get message event(search with contents)
/// \~english @param  [in] queue_id
///       ID of message event queue
/// \~english @param  [in] bytes
///       size of compare bytes
/// \~english @param  [in] compare_bytes
///       bytes that used to campare the contents
/// \~english @param  [out] message
///       message event struct
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @par
///         EV_Message struct
///   @code
///         #define EV_MAX_MESSAGE_LENGTH 2048
///         typedef struct {
///            EV_ID queueID;
///            UINT32 senderInfo;
///            UINT32 length;
///            UINT32 dummy;
///            UINT8  message[EV_MAX_MESSAGE_LENGTH];
///          } EV_Message;
///         @endcode
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: The specified queue ID is not existing,
///   or it is not created in current process.
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///       - Not find contents's message according to input contents information
///          - EV_ERR_Invalid_ID
///       - Securing free space of thread information management table (malloc) Failure
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///       - Message queue pool is NULL
///       - Message queue generation corresponding to queue_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   If the event in compare bytes is same with
///   any event in message event queue whose ID is specified,
///   get the event and delete it from queue.
///   If such a message is not existing, set message->queueID to EV_NO_ID, then return.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_find_message_by_content(EV_ID queue_id,                 // NOLINT (readability/nolint)
                                  UINT16 length,                  // NOLINT (readability/nolint)
                                  const void *compare_bytes,      // NOLINT (readability/nolint)
                                  /* OUT */EV_Message *message);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_get_flag_fd
/// \~english @par Brief
///       Obtain fd for polling flag event
/// \~english @param [in] flag_id
///       EV_ID        - Flag ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] fd
///       int *        - event flag queue fd for Polling
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @par Prerequisite
///       Execute EV_create_flag(),EV_create_flag_auto_id() and flag has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       --incorrect flag_id:The flag_id of event which has not been created.
///       - Flag corresponding to flag_id doesn't exist
///          - EV_ERR_Invalid_ID
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets fd(File Descriptor) corresponding to flag of ID specified by argument.
///       The user can only get flag created by user process .
///       This fd(File Descriptor) can be used only for designation to poll / select, and operation when other
///       operations are performed is not guaranteed.
///       At the time of poll, only POLLIN can be specified, and at the time of select,
///       it is possible to check only whether it can be read.
///       Also, if flag is deleted in poll / select, it exits poll / select. * In case of poll, POLLERR is set.
///       When calling the same ID more than once, it returns the same fd(File Descriptor)
///       each time (unless destroy / create is done).
/// \~english @see
///       nothing
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_get_flag_fd(EV_ID flag_id, /* OUT */int *fd);  // NOLINT (readability/nolint)

/////////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_get_queue_fd
/// \~english @par Brief
///       Obtain fd for polling message event
/// \~english @param [in] flag_id
///       EV_ID        - Flag ID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @param [out] fd
///       int * - Message queue fd for Polling
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @par Prerequisite
///       Execute EV_create_queue(),EV_create_queue_auto_id() and message queue has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error
///       - Message queue corresponding to queue_id doesn't exist
///       --incorrect queue_id:The queue_id of essage which has not been created.
///          - EV_ERR_Invalid_ID
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Gets fd(File Descriptor) corresponding to message queue of ID specified by argument.
///       The user can only get message queue created by user process .
///       This fd(File Descriptor) can be used only for designation to poll / select,
///       and operation when other operations are performed is not guaranteed.
///       At the time of poll, only POLLIN can be specified, and at the time of select,
///       it is possible to check only whether it can be read.
///       Also, if message queue is deleted in poll / select, it exits poll / select.
///       * In case of poll, POLLERR is set.
///       When calling the same ID more than once, it returns the same fd(File Descriptor)
///       each time (unless destroy / create is done).
/// \~english @see
///       nothing
////////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_get_queue_fd(EV_ID queue_id, /* OUT */int *fd);  // NOLINT (readability/nolint)

/* \~english Functions that specify the module ID (16 bits) instead of the flag ID and queue ID */

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_moduleID_to_flag_id
/* \~english function group used to specify moduleID(16bit) instead of flag_id, queue_id */
/// \~english @par Brief change from moduleID to flag_id
/// \~english @param  [in] m_id
///       moduleID
/// \~english @retval flag_id
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///    - none
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   You can not use this function to
///   create a multiple of flags with one moduleID. return error:EV_ERR_Exist.
///   This function is only used for generating one event by one module ID.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ID EV_moduleID_to_flagID(UINT16 m_id);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_moduleID_to_flag64ID
/// \~english @par Brief change from moduleID to 64bit flag_id
/// \~english @param  [in] m_id
///       moduleID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval 64bit flag_id
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///    - none
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   You can not use this function to
///   create a multiple of flags with one moduleID. return error:EV_ERR_Exist.
///   This function is only used for generating one event by one module ID.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ID EV_moduleID_to_flag64ID(UINT16 m_id);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_moduleID_to_queueID
/// \~english @par Brief change from moduleID to queue_id
/// \~english @param  [in] m_id
///       moduleID
/// \~english @par
///         EV_ID type parameter
///   @code
///         typedef UINT32 EV_ID
///         @endcode
/// \~english @retval queue_id
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///    - none
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   You can not use this function to
///   create a multiple of queues with one moduleID.
// \~english @see none
////////////////////////////////////////////////////////////////////////////////

EV_ID EV_moduleID_to_queueID(UINT16 m_id);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_flag_by_mID
/// \~english @par Brief create flag(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread.
/// \~english @retval EV_ERR_Exist Duplication Error
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id:The ID is not created by function of EV_moduleID_to_flagID ().
///          - EV_ERR_Invalid_ID
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - flag_id registered in launch thread
///       - Flag corresponding to flag_id already exists
///          - EV_ERR_Exist
///       - Securing free space of thread information management table (malloc) Failure
///       - Flag pool is NULL
///       - Flag generation corresponding to flag_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   You can not use this function to
///   create a multiple of flags with one moduleID.return error:EV_ERR_Exist.
///   This function is only used for generating one event by one module ID.
// \~english @see EV_create_flag
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_flag_by_mID(UINT16 m_id);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_flag64_by_mID
/// \~english @par Brief create 64bit flag(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread.
/// \~english @retval EV_ERR_Exist Duplication Error
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id:The ID is not created by function of EV_moduleID_to_flag64ID ().
///          - EV_ERR_Invalid_ID
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - flag_id registered in launch thread
///       - Flag corresponding to flag_id already exists
///          - EV_ERR_Exist
///       - Securing free space of thread information management table (malloc) Failure
///       - Flag pool is NULL
///       - Flag generation corresponding to flag_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   You can not use this function to
///   create a multiple of flags with one moduleID. return error:EV_ERR_Exist.
///   This function is only used for generating one event by one module ID.
// \~english @see EV_create_flag64
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_create_flag64_by_mID(UINT16 m_id);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_create_queue_by_mID
/// \~english @par Brief create queue(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @param  [in] length
///       length of message queue
/// \~english @param  [in] max_bytes
///       one max bytes for message
/// \~english @param  [in] type
///       treat type of receiving events even though the queue is full
/// \~english @par
///         ev_message_queue_type struct
///   @code
///             enum ev_message_queue_type {
///               EV_MESSAGE_QUEUE_TYPE_BUSY,
///               EV_MESSAGE_QUEUE_TYPE_FIFO,
///               EV_MESSAGE_QUEUE_TYPE_REPLACE,
///             };
///         @endcode
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: set en invalid flag ID
/// \~english @retval EV_ERR_Thread_Over The MAX of event thread.
/// \~english @retval EV_ERR_Exist: a same flag ID is existing
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///       There is no prerequisite
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///          - EV_ERR_Invalid_ID
///       - Startup thread upper limit (16) error
///          - EV_ERR_Thread_Over
///       - queue_id registered in launch thread
///       - Message queue corresponding to queue_id already exists
///          - EV_ERR_Exist
///       - Securing free space of thread information management table (malloc) Failure
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///       - Message queue pool is NULL
///       - Message queue generation corresponding to queue_id failed
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   You can not use this function to
///   create a multiple of queues with one moduleID.
// \~english @see EV_create_queue
////////////////////////////////////////////////////////////////////////////////

EV_ERR
EV_create_queue_by_mID(UINT16 m_id,                  // NOLINT (readability/nolint)
                      UINT8 length,                  // NOLINT (readability/nolint)
                      UINT16 max_bytes,              // NOLINT (readability/nolint)
                      EV_Message_Queue_Type type);   // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_destroy_flag_by_mID
/// \~english @par Brief delete flag(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @par length [in]length of message queue
/// \~english @par max_bytes [in]one max bytes for message
/// \~english @par type [in]treat type of receiving events even though the queue is full
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: set en invalid flag ID
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    - none
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id:The flag_id of event/message which has not been created.
///       - Flag corresponding to queue_id doesn't exist
///          - EV_ERR_Invalid_ID
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
/// \~english You can not use this function to
/// \~english create a multiple of flags with one moduleID. return error:EV_ERR_Exist.
/// This function is only used for generating one event by one module ID.
// \~english @see EV_destroy_flag
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_destroy_flag_by_mID(UINT16 m_id);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_destroy_queue_by_mID
/// \~english @par Brief delete queue(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///       - Message queue corresponding to flag_id doesn't exist
///          - EV_ERR_Invalid_ID
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///   You can not use this function to
///   create a multiple of queues with one moduleID
// \~english @see EV_destroy_queue
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_destroy_queue_by_mID(UINT16 m_id);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_set_flag_by_mID
/// \~english @par Brief send flag(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @param  [in] bits
///       value of flag
/// \~english @retval EV_OK: normal termination
/// \~english @retval EV_ERR_Invalid_ID: set en invalid flag ID
/// \~english @retval EV_ERR_Fatal: Fatal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id:The flag_id of event which has not been created.
///       - Flag corresponding to flag_id doesn't exist
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Sets bit pattern specified by argument to flag of ID specified by argument.
///       When setting a plurality of bit patterns in the same flag,
///       "only OR operation result of all bit patterns" is held in flag.
// \~english @see EV_set_flag
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_set_flag_by_mID(UINT16 m_id, UINT32 bits);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_set_flag64_by_mID
/// \~english @par Brief send 64bit flag(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @param  [in] bits
///       value of flag
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid flag_id
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///    - none
/// \~english @par Change of internal state
///    There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect flag_id)
///       --incorrect flag_id:The flag_id of event which has not been created.
///       - Flag corresponding to flag_id doesn't exist
///          - EV_ERR_Invalid_ID
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Sets bit pattern specified by argument to flag of ID specified by argument.
///       When setting a plurality of bit patterns in the same flag, "only
///       OR operation result of all bit patterns" is held in flag.
// \~english @see EV_set_flag64
////////////////////////////////////////////////////////////////////////////////

EV_ERR EV_set_flag64_by_mID(UINT16 m_id, UINT64 bits);  // NOLINT (readability/nolint)

////////////////////////////////////////////////////////////////////////////////
/// \ingroup EV_send_message_by_mID
/// \~english @par Brief send message(moduleID specified)
/// \~english @param  [in] m_id
///       moduleID
/// \~english @param  [in] bytes
///       number of send bytes
/// \~english @param  [in] message
///       pointer to sender contents
/// \~english @param  [in] senderInfo
///       sender information
/// \~english @retval EV_OK Successful completion
/// \~english @retval EV_ERR_Invalid_ID Invalid queue_id
/// \~english @retval EV_ERR_Busy Queue overflow
/// \~english @retval EV_ERR_Fatal Abnormal error
/// \~english @par Prerequisite
///       Execute EV_create_queue(),EV_create_queue_auto_id() and message queue has already been created.
/// \~english @par Change of internal state
///       There is no change of the internal Status
/// \~english @par Conditions of processing failure
///       - Input parameter error (specifying incorrect queue_id)
///       --incorrect queue_id:The queue_id of essage which has not been created.
///       - Message queue corresponding to queue_id doesn't exist
///          - EV_ERR_Invalid_ID
///       - Queue overflow in kernel space
///          - EV_ERR_Busy
///       - Access failed from kernel space to user space reference area
///       - Failed to copy data from user space to kernel space
///       - Invalid queue types
///          - EV_ERR_Fatal
/// \~english @par Classification
///       Public
/// \~english @par Type
///       Sync Only
/// \~english @par Detail
///       Sends message specified by argument to message moduleID specified by argument.
///       An error occurs when message queue of the specified ID doesn't exist
///       or message size exceeds the specified size.
///       When message queue is FULL, the processing differs depending on the type
///       of message queue specified at the time of creation message queue.
/// \~english @see evk_open, evk_close, evk_ioctl, evk_store_message
////////////////////////////////////////////////////////////////////////////////

EV_ERR
EV_send_message_by_mID(UINT16 m_id,         // NOLINT (readability/nolint)
                      UINT16 bytes,         // NOLINT (readability/nolint)
                      const void *message,  // NOLINT (readability/nolint)
                      UINT32 senderInfo);   // NOLINT (readability/nolint)

/** @}*/  // end of event_library
/** @}*/  // end of other_service
/** @}*/  // end of BaseSystem
/**
 *
 * @brief Method to specify module IDs as flag IDs and queue IDs
 *
 * The function with module ID as an argument directly can be used in the case of that created only 
 * one flag and queue in the module, other than using macros EV_Flag_ID_Base() or EV_Queue_ID_Base().
 * @see EV_create_flag_by_mID
 * @see EV_create_queue_by_mID
 * @see EV_destroy_flag_by_mID
 * @see EV_destroy_queue_by_mID
 * @see EV_set_flag_by_mID
 * @see EV_send_message_by_mID
 *
 * So the following API can be used to convert IDs created using above method to flag IDs or queue ID
 * when pass them to other modules.
 * @see EV_moduleID_to_flagID(UINT16 m_id)
 * @see EV_moduleID_to_queueID(UINT16 m_id)
 *
 * @see EV_ID_spec
 */

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* !__KERNEL__ */

#endif  // OTHERSERVICE_EV_LIB_H_