]> granicus.if.org Git - strace/blob - sram_alloc.c
alpha, ia64, sh, sparc, sparc64: fix pipe and pipe2 syscalls decoding
[strace] / sram_alloc.c
1 #include "defs.h"
2
3 #ifdef BFIN
4
5 #include <bfin_sram.h>
6
7 #include "xlat/sram_alloc_flags.h"
8
9 int
10 sys_sram_alloc(struct tcb *tcp)
11 {
12         if (entering(tcp)) {
13                 /* size */
14                 tprintf("%lu, ", tcp->u_arg[0]);
15                 /* flags */
16                 printflags(sram_alloc_flags, tcp->u_arg[1], "???_SRAM");
17         }
18         return 1;
19 }
20
21 #endif /* BFIN */