From 902a7661cfed71b1f50aa95bac9345883cb435cc Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Fri, 28 Feb 2025 20:15:16 -0700 Subject: Fix linker confusion --- build-aux/stack.c.gen | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build-aux') diff --git a/build-aux/stack.c.gen b/build-aux/stack.c.gen index 2acce60..f851afe 100755 --- a/build-aux/stack.c.gen +++ b/build-aux/stack.c.gen @@ -162,7 +162,7 @@ def analyze( + r"(?P[^\n]+:[0-9]+:[0-9]+)\n" + r"(?P[0-9]+) bytes \((?Pstatic|dynamic|dynamic,bounded)\)\n" + r"(?P[0-9]+) dynamic objects" - + r"(?:\n.*)?", + + r"(?:\n.*)*", flags=re.MULTILINE, ) @@ -506,11 +506,11 @@ class LibCRIPCPlugin: def indirect_callees(self, loc: str, line: str) -> tuple[list[str], bool] | None: if "/3rd-party/" in loc: return None - if "/chan.h:" in loc and "front->dequeue(" in line: + if "/chan.c:" in loc and "front->dequeue(" in line: return [ "_cr_chan_dequeue", "_cr_select_dequeue", - ], True + ], False return None def skip_call(self, chain: list[str], call: str) -> bool: -- cgit v1.2.3-2-g168b