/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/iovec.h
18 строк
315 B
Dmitry V. Levin
Introduce strace_iovec type and fetch_struct_iovec function
10 май 2021, 11:00
10 май 2021, 11:00
4d82ab5
Код
Авторство
О чём код?
/* * Copyright (c) 2021 The strace developers. * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #ifndef STRACE_IOVEC_H # define STRACE_IOVEC_H # include "kernel_types.h" typedef struct { kernel_ulong_t iov_base; kernel_ulong_t iov_len; } strace_iovec; #endif /* STRACE_IOVEC_H */