aboutgitcodelistschat:MatrixIRC
path: root/cooker/calls.c
blob: f4e7d49239c2a03bc623d3587f591cc4a35c4e39 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
                                            












                                                                    


                          
                     
                            

                            
                                                                    
                                        
             
  
// SPDX-License-Identifier: GPL-2.0-or-later

/* seitan - Syscall Expressive Interpreter, Transformer and Notifier
 *
 * cooker/calls.c - Known syscall sets
 *
 * Copyright 2023 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#include "cooker.h"
#include "calls.h"

#include "calls/net.h"
#include "calls/ioctl.h"
#include "calls/process.h"
#include "calls/fs.h"
#include "calls/io.h"
#include "calls/scheduler.h"

struct call *call_sets[] = {
	syscalls_net, syscalls_ioctl, syscalls_process, syscalls_fs,
	syscalls_io, syscalls_scheduler,
	NULL,
};