]> Sergey Matveev's repositories - public-inbox.git/blobdiff - devel/syscall-list
nntp: inline CRLF in all response lines
[public-inbox.git] / devel / syscall-list
index 3d55df1fc1d7d1f4cbb466ff91efa2cfabd5e66e..d33a8a78a86e00c4534259125fa2c380323d813c 100755 (executable)
@@ -26,8 +26,10 @@ system($cc, '-o', $x, $f, @cflags) == 0 or die "cc failed \$?=$?";
 exec($x);
 __DATA__
 #define _GNU_SOURCE
-#include <unistd.h>
 #include <sys/syscall.h>
+#include <sys/ioctl.h>
+#include <linux/fs.h>
+#include <unistd.h>
 #include <stdio.h>
 
 #define D(x) printf("$" #x " = %ld;\n", (long)x)
@@ -46,6 +48,14 @@ int main(void)
        D(SYS_inotify_add_watch);
        D(SYS_inotify_rm_watch);
        D(SYS_prctl);
+       D(SYS_fstatfs);
+       D(SYS_sendmsg);
+       D(SYS_recvmsg);
+#ifdef FS_IOC_GETFLAGS
+       printf("FS_IOC_GETFLAGS=%#lx\nFS_IOC_SETFLAGS=%#lx\n",
+               (unsigned long)FS_IOC_GETFLAGS, (unsigned long)FS_IOC_SETFLAGS);
+#endif
+
 #ifdef SYS_renameat2
        D(SYS_renameat2);
 #endif