File: syscalls.h

package info (click to toggle)
reprozip 1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: ansic: 2,848; python: 2,734; sh: 20; makefile: 12
file content (13 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (4)
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