/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.1
src/sram_alloc.c
29 строк
478 B
Dmitry V. Levin
Update copyright headers
05 авг 2025, 11:00
05 авг 2025, 11:00
7db24b3
Код
Авторство
О чём код?
/* * Copyright (c) 2014-2025 The strace developers. * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #include "defs.h" #ifdef BFIN # include <bfin_sram.h> # include "xlat/sram_alloc_flags.h" SYS_FUNC(sram_alloc) { /* size */ tprints_arg_name("size"); PRINT_VAL_U(tcp->u_arg[0]); /* flags */ tprints_arg_next_name("flags"); printflags64(sram_alloc_flags, tcp->u_arg[1], "???_SRAM"); return RVAL_DECODED | RVAL_HEX; } #endif /* BFIN */