note a leak that needs fixing eventually
[trinity.git] / syscalls / exit_group.c
blob23a35710303ff902d03e2077be446f6075a4a377
1 /*
2 * SYSCALL_DEFINE1(exit_group, int, error_code)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_exit_group = {
7 .name = "exit_group",
8 .num_args = 1,
9 .flags = AVOID_SYSCALL, // No args to fuzz, confuses fuzzer
10 .arg1name = "error_code",