Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/tools/syscalls/examples/cpp/test_syscalls.c
39530 views
1
/*
2
* System call names.
3
*
4
* DO NOT EDIT-- this file is automatically @generated.
5
*/
6
7
const char *test_syscallnames[] = {
8
"#0", /* 0 = unimpl_syscall0 */
9
#ifdef PLATFORM_FOO
10
"syscall1", /* 1 = syscall1 */
11
#else
12
"#1", /* 1 = reserved for local use */
13
#endif
14
#ifdef PLATFORM_FOO
15
"obs_syscall2", /* 2 = obsolete syscall2 */
16
#else
17
"syscall2", /* 2 = syscall2 */
18
#endif
19
};
20
21