/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/shutdown.c
22 строки
391 B
Dmitry V. Levin
Update copyright headers
30 окт 2023, 11:00
30 окт 2023, 11:00
7adc8e7
Код
Авторство
О чём код?
/* * Copyright (c) 2016-2023 The strace developers. * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ /* Check decoding of shutdown syscall. */ #include "tests.h" #include <stdio.h> #include <sys/socket.h> int main(void) { int rc = shutdown(-1, SHUT_RDWR); printf("shutdown(-1, SHUT_RDWR) = %s\n", sprintrc(rc)); puts("+++ exited with 0 +++"); return 0; }