Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugin/gen_insn_text_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def gen_insn_text_func(tag, regs, imms):
def process_all_tags(tagregs, tagimms):
tag_to_fbody = OrderedDict({tag: '' for tag in tags})
print('Processing %d tags in parallel' % (len(tags)))
with concurrent.futures.ProcessPoolExecutor(max_workers=5) as executor:
with concurrent.futures.ThreadPoolExecutor(max_workers=5) as executor:
future_to_tag = {}
for i, tag in enumerate(tags):
if not behdict[tag]:
Expand Down
2 changes: 1 addition & 1 deletion third_party/binaryninja-api
Submodule binaryninja-api updated 441 files
1 change: 1 addition & 0 deletions third_party/qemu-hexagon/opcodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "third_party/qemu-hexagon/attribs.h"
#include "third_party/qemu-hexagon/bitmap.h"
Expand Down