Skip to content

Commit afa47a4

Browse files
committed
main: Increase BM_SIZE to 65536
Signed-off-by: Akira Moroo <[email protected]>
1 parent 306342f commit afa47a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* SUPPLEMENTAL: syscall record without syscalls
3434
*/
3535
#define BM_BACKING_FILE "/tmp/syscall_record"
36-
#define BM_SIZE (1UL << 9)
36+
#define BM_SIZE (1UL << 16) // svc #imm is 16-bit, so 65536 entries
3737
static char *bm_mem = NULL;
3838

3939
static void bm_init(void) {

0 commit comments

Comments
 (0)