File: syscalls.h

package info (click to toggle)
reprozip 1.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 488 kB
  • sloc: ansic: 2,801; python: 2,733; sh: 20; makefile: 11
file content (13 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SYSCALL_H
#define SYSCALL_H

#include "tracer.h"

void syscall_build_table(void);

int syscall_handle(struct Process *process);

int syscall_execve_event(struct Process *process);
int syscall_fork_event(struct Process *process, unsigned int event);

#endif