Krzysztof Łopatowski

Results 4 comments of Krzysztof Łopatowski

I've watched now [Evolution of stack trace captures with BPF - Andrii Nakryiko](https://youtu.be/20SO5thkvhI?list=PLbzoR-pLrL6oj1rVTXLnV7cOuetvjKn9q&t=145) _Originally posted by @ekyooo in https://github.com/iovisor/bcc/pull/5181#discussion_r1909752691_ I think we should consider keeping BPF_F_FAST_STACK_CMP | BPF_F_REUSE_STACKID since for...

> Cool. Could you add this to the CI as well please: @ctron Done. Do you wish to wait with merging until wasm-bindgen resolves [shared worker loading issue](https://github.com/rustwasm/wasm-bindgen/issues/4536)?

I've found a workaround for the issue. It's to create such a loader shim: ```js import init from './worker.js'; let initialized = false; async function initial_handler(e) { if (initialized) return;...

In a hacky way. I'd recommend you to write your shared worker in javascript. If you need to use some wasm, write and export some functions from wasm and call...