/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/rseq_slice_yield.c
24 строки
404 B
Dmitry V. Levin
Implement decoding of rseq_slice_yield syscall
24 апр 2026, 11:00
24 апр 2026, 11:00
01e2878
Код
Авторство
О чём код?
/* * Check decoding of rseq_slice_yield syscall. * * Copyright (c) 2026 The strace developers. * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "tests.h" #include "scno.h" #include <stdio.h> #include <unistd.h> int main(void) { printf("rseq_slice_yield() = %s\n", sprintrc(syscall(__NR_rseq_slice_yield))); puts("+++ exited with 0 +++"); return 0; }