docs: Add supported versions and fix-backport policy
[lttng-tools.git] / src / bin / lttng-sessiond / lttng-syscall.hpp
CommitLineData
834978fd 1/*
ab5be9fa 2 * Copyright (C) 2014 David Goulet <dgoulet@efficios.com>
834978fd 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
834978fd 5 *
834978fd
DG
6 */
7
0dbc2034
GB
8#ifndef LTTNG_SYSCALL_H
9#define LTTNG_SYSCALL_H
834978fd 10
28f23191
JG
11#include "trace-kernel.hpp"
12
c9e313bc 13#include <common/hashtable/hashtable.hpp>
834978fd 14
28f23191 15#include <lttng/event.h>
834978fd
DG
16
17/*
18 * Default size of the kernel system call array. With this size, we usually
19 * reallocate twice considering a 32 bit compat layer also.
20 */
28f23191 21#define SYSCALL_TABLE_INIT_SIZE 256
834978fd
DG
22
23/* Maximum length of a syscall name. */
28f23191 24#define SYSCALL_NAME_LEN 255
834978fd
DG
25
26/*
27 * Represent a kernel syscall and used when we are populating the internal
28 * list.
29 */
30struct syscall {
31 uint32_t index;
32 uint32_t bitness;
33 char name[SYSCALL_NAME_LEN];
34 /* Used by the list syscalls command. */
35 struct lttng_ht_node_str node;
36};
37
38/*
39 * Allocated once when listing all syscalls at boot time. This is an array
40 * indexed by the syscall index provided in the listing.
41 */
42extern struct syscall *syscall_table;
43
44/* Use to list kernel system calls. */
7d268848 45int syscall_init_table(int tracer_fd);
834978fd 46ssize_t syscall_table_list(struct lttng_event **events);
834978fd 47
0dbc2034 48#endif /* LTTNG_SYSCALL_H */
This page took 0.075019 seconds and 4 git commands to generate.