1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/BBA1.5_platform/apps/public/strace-4.16/sram_alloc.c
2024-07-22 01:58:46 -03:00

20 lines
289 B
C

#include "defs.h"
#ifdef BFIN
#include <bfin_sram.h>
#include "xlat/sram_alloc_flags.h"
SYS_FUNC(sram_alloc)
{
/* size */
tprintf("%lu, ", tcp->u_arg[0]);
/* flags */
printflags64(sram_alloc_flags, tcp->u_arg[1], "???_SRAM");
return RVAL_DECODED | RVAL_HEX;
}
#endif /* BFIN */